Source Code:
(back to article)
string1 = "Hello" string2 = "world" result = " ".join([string1, string2]) print(result) # Output: "Hello world"
Result:
Report an issue