The overall goal of this program is to count the occurrences of a word that the user inputs. To do this I need all of the words in this long string to be lowercase. I do not want to print the entire string with
print s.lower()
I just want this to actually change the string to lowercase without printing it out.