python3 split string by comma code example
Example 1: how to split word in python
text= "I am Batman"
splitted_text= text.split()
Print(splitted_text)
Example 2: how to split a string in python
sample_str = "Help developers by donating!"
txt.split(' ')