4 lines
55 B
Python
4 lines
55 B
Python
|
|
s = "Hello "
|
||
|
|
t = "world!"
|
||
|
|
u = s + t # + concatenates
|