In [1]:
i = 10
print(type(i))
In [2]:
f = 10.0
print(type(f))
In [3]:
print(i == f)
In [4]:
print(i is f)