What I'm trying to do is to get some text from the user store it in a variable. I then split that variable by a period which gives me a sentence_list. Then I want to capitalize the starting word of each element contained in the list.
userText = input('Enter your text: ')
sentence = userText.split('. ')