I've looked at several other posts asking this same question but none of them seem to apply to me. Here's the code:
wordNumber = input("Word Number: ")
addedWords = 0
wordList = []
while addedWords != wordNumber:
Word = input("Word: ")
wordList.append(Word)
addedWords = addedWords + 1
I've been setting wordNumber to equal 5. I would think that since I am adding 1 to addedWordsin each loop, it should work perfectly and stop looping once addedWords is equal to wordNumber. I can't even fathom what I could be missing here.
Thank you!