Source Code:
(back to article)
string1 = "Hello" string2 = "world" string1 += " " + string2 print(string1) # Output: "Hello world"
Result:
Report an issue