Answer:
n= input("Please enter the next word: ")
x=1
while(n != "STOP"):
print("#" + str(x) + ": You entered " + n)
x=x+1
print("All done. " + str(x-1) + " words entered.")
Step-by-step explanation:
5.1m questions
6.7m answers