6 lines
62 B
Python
6 lines
62 B
Python
|
|
s1 = "hello"
|
||
|
|
print s1 + " world"
|
||
|
|
|
||
|
|
s2 = s1 + " world"
|
||
|
|
print s2
|