>>> a = 1/3 >>> type(a) int
>>> a = 1/3 >>> type(a) <class 'float'>
print(type(1/3)) <class 'float'>
x = 1 for i in range(100): x = x*2 print(i, x)
print(9**32-(9**32-5))