Source Code:
(back to article)
string = "Hello World" string = string[:6] + "," + string[7:] print(string)
Result:
Report an issue