Quiz Catalog

Catalog of quizzes

a = 5 ** 1000000
b = 5. ** 1000000

print(type(a) == type(b))
OverflowError: (34, 'Result too large')  
  • float/comprehension
  • build-in/type