String Formatting

Chester Wyke August 19, 2022 Updated: April 15, 2025 #python

F-Strings

Fixed floats

Source: https://docs.python.org/3/library/string.html#format-specification-mini-language

x = 3.1415926535
f'{x:.2f}'

Outputs 3.14