how to define numbers in python code example
Example 1: for num in value means in python
>>> n = -37
>>> bin(n)
'-0b100101'
>>> n.bit_length()
6
Example 2: python declare int
x = 5
print(type(x))
# Output: <class 'int'>
Example 3: declare float python
myfloat = 7.0