python print float {} code example
Example 1: python3 print format float
numbers = [23.23, 0.123334987, 1, 4.223, 9887.2]
for number in numbers:
print(f'{number:.4f}')
Example 2: printing float number python
x = 1.1234567898
print("%.10f" % x)