w = как определить, есть ли десятичное в питоне

i = 100
f = 1.23

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