Source Code:
(back to article)
string = "Hello, World!" string = string.replace(",", "") print(string) # Output: "Hello World!"
Result:
Report an issue