Computer Science, asked by aaaah1234, 5 months ago

4.5 CODE PRACTICE ON EDHESIVE PLEASE

Answers

Answered by macaroongaming06
13

Answer:

n= input("Please enter the next word: ")

x=1

while(n != "STOP"):

  print("#" + str(x) + ": You entered " + n)

  x=x+1

  n= input("Please enter the next word: ")

 

print("All done. " + str(x-1) + " words entered.")

Explanation:

I did this code and it gave me a 100! Hope it works!

Similar questions