3 lines
67 B
Python
3 lines
67 B
Python
>>> first_name + " " + last_name # Not Pythonic
|
|
'Michael Hartl'
|
>>> first_name + " " + last_name # Not Pythonic
|
|
'Michael Hartl'
|