I am trying to find 2 re.sub()
lines. The first one changes any number of spaces and/or tab characters in any order into a space. (Maybe this should be 2 separate ones?)
The second one changes anything that is not a letter or a space into an empty string. I included what I know so far for each one below
re.sub("?"," ",word)
re.sub("?","",word)
What should be put where the question marks are? Thanks.