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