Python pływa do 2 miejsc po przecinku

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