problems with python decimal function results code example
Example 1: give answer in 6 decimal python
print("{:.6f}".format(variable_name))
Example 2: what should you call a decimal value in python
x = 13.949999999999999999
g = float("{:.2f}".format(x))