python flutuar até 2 lugares decimais

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