String Formatting
Chester Wyke August 19, 2022 Updated: April 26, 2025 #PythonF-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
Source: https://docs.python.org/3/library/string.html#format-specification-mini-language
x = 3.1415926535
f'{x:.2f}'
Outputs 3.14