python is decimal number code example
Example 1: fixed precision float python
x = 13.949999999999999999
g = float("{:.2f}".format(x))
Example 2: give answer in 6 decimal python
print("{:.6f}".format(variable_name))
Example 3: w=how to tell if decimal in python
i = 100
f = 1.23
print(type(i))
print(type(f))
# <class 'int'>
# <class 'float'>