Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 141 Bytes

File metadata and controls

9 lines (8 loc) · 141 Bytes
>>> website = 'Quickref.ME'
>>> f"Hello, {website}"
"Hello, Quickref.ME"

>>> num = 10
>>> f'{num} + 10 = {num + 10}'
'10 + 10 = 20'