Source Code:
(back to article)
string = "Hello,World" print(string.split(",")) # Output: ['Hello', 'World']
Result:
Report an issue