Comment calculer les nombres avec deux zéros en python
total =0
z =total + 3.0
# write the number of integers after the dot
print(f"{z:.2f} ")
#output = 3.00
Inquisitive Ibex