Cómo calcular los números con dos ceros 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