Python Float hasta 2 decimales

float = 2.154327
format_float = "{:.2f}".format(float)
print(format_float)
Sore Stork