After I build and run the code, "Enter word: " is output once and that's it. Stays blank after entering any word. What am I missing? Here's the code:
word = "cool"
guess = " "
while guess != word:
guess = input("Enter word: ")
print("you win!")