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