Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 282 Bytes

f-strings.md

File metadata and controls

11 lines (7 loc) · 282 Bytes

F Strings

“formatted string literals,” f-strings are string literals that have an f at the beginning and curly braces containing expressions that will be replaced with their values.

name = 'Paul'
age = 35

f'Hello my name is {name}, and I am {age} years old'