Python flottant jusqu'à 2 décimales

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