6 lines
98 B
Python
6 lines
98 B
Python
|
|
s1 = "hello"
|
||
|
|
print ", ".join([s1, "world", "mom"])
|
||
|
|
|
||
|
|
s2 = ", ".join([s1, "world", "mom"])
|
||
|
|
print s2
|