5 lines
164 B
Python
5 lines
164 B
Python
>>> first_name + " " + last_name # Concatenation (not Pythonic)
|
|
'Michael Hartl'
|
|
>>> f"{first_name} {last_name}" # Interpolation (Pythonic)
|
|
'Michael Hartl'
|