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