Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 85 Bytes

File metadata and controls

9 lines (8 loc) · 85 Bytes
>>> s = 'spam'
>>> t = 'egg'
>>> s + t
'spamegg'
>>> 'spam' 'egg'
'spamegg'