Как рассчитать числа с двумя нулями в питоне

total =0
z =total + 3.0

# write the number of integers after the dot
print(f"{z:.2f} ")

#output = 3.00
Inquisitive Ibex