Odpowiedź w 6 Pythonie po przecinku
print("{:.6f}".format(variable_name))
Curious Cod
print("{:.6f}".format(variable_name))
x = 13.949999999999999999
g = float("{:.2f}".format(x))
a_float = 3.14159
formatted_float = "{:.2f}".format(a_float)
print(formatted_float)
x = 2.66666666
print(round(x, 2))
// 2.66
print(round(x))
// 3