My homework assignment is to Write a program that reads a string from the user and creates a list of words from the input.Create two lists, one containing the words that con
My regex:
vendor = "MyNameIsJoe. IWorkInDDFinc." ven = re.split(r'(?<=[a-z])[A-Z]|[A-Z](?=[a-z])', vendor)
I need split word that would have happened: My Name Is Joe. I Work In DDF inc.
My Name Is Joe. I Work In DDF inc.