Source Code:
(back to article)
string1 = "Hello" string2 = "World" string3 = string1 + " " + string2 print(string3)
Result:
Report an issue