5 lines
64 B
Text
5 lines
64 B
Text
|
|
s = "hello"
|
||
|
|
print (s + " literal")
|
||
|
|
s1 = s + " literal"
|
||
|
|
print s1
|