+25 XP
Lesson 75

String Formatting

Beautiful text output!

f{ }

F-Strings!

The best way to format text!

f-strings let you put variables inside text!

f"Hello {'{'}name{'}'}"

Old way

"Hi " + name

f-string way

f"Hi {'{'}name{'}'}"