w = jak stwierdzić, czy dziesiętne w Pythonie

i = 100
f = 1.23

print(type(i))
print(type(f))
# <class 'int'>
# <class 'float'>
Crazy Crab