text = "If it is hot , don’t touch"
newtext = text.replace(",", "")
words = newtext.split()
print(words)
CLICK HERE to find out more related problems solutions.
text = "If it is hot , don’t touch"
newtext = text.replace(",", "")
words = newtext.split()
print(words)
CLICK HERE to find out more related problems solutions.