##Yes, in regex if we write r"\W+ in split function": here \W = non-word character (spaces, punctuation, symbols) #in regex if we write r"\w+ in split function here \w = word character (letters, ...