Source Code:
(back to article)
string1 = "Hallo" string2 = "Welt" result = string1 + " " + string2 print(result) # Ausgabe: "Hallo Welt"
Result:
Report an issue