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