Помогите улучшить игру

Игра "Анаграммы" Как сделать так чтобы угаданные слова зачеркивались из списка и выводились другие слова до тех пор пока список не очистится

from random import choice,randrange
from time import sleep
wrongs = 0
WORDS = ("python","coding","ocean","hard","shovel","blueberry","photoshop","gta",
     "barbershop","truck","poison","turtle","strawberry","bread","fish",
     "car","sus","prison","star","NeverGonnaGiveYouUp","tank","Elon","Trump")
word = choice(WORDS)
correct = word
jumble = ""

while word:
    position = randrange(len(word))
    jumble += word[position]
    word = word[:position] + word[(position + 1):]
if len(jumble) in [1,2,3,4]:
    print("The jumble: ", easy)
    print("Jumbe level: Easy")
elif len(jumble) in [5,6]:
    print("The jumble: ", normal)
    print("Jumble level: Normal")
elif len(jumble) in [7,8,9,10]:
    print("The jumble: ", hard)
    print("Jumble level: Hard")
else:
    print("The jumble: ", hard2)
    print("Jumble level: Hard as ****")

guess = input("\nTry to guess the word: ")
while guess != correct and guess != "":
    wrongs += 1
    print("You're wrong.")
    guess = input("Try to guess the word again: ")
    if guess == correct:
        if guess == "sus":
        print("AMOGUUS")
    print("Yes it is! You guess is correct.")
print("\nThanks for playing!")

Ответы (0 шт):