我想循环输入,所以我得到3个猜测,或2个猜测和1个线索:
if chosen == 1:
print ("Your anagram is:", anagrameasy)
time.sleep(1)
easyguess = input ("Please input the answer in lower case, type clue for a clue")
if easyguess == answereasy:
print ("correct")
if easyguess == "clue":
print (clueeasy)
easyguess = input ("Please input the answer in lower case, type clue for a clue")
elif easyguess != answereasy:
print("try again")