python variable be one of two types code example
Example 1: python declare int
x = 5
print(type(x))
# Output: <class 'int'>
Example 2: declare float python
myfloat = 7.0
x = 5
print(type(x))
# Output: <class 'int'>
myfloat = 7.0