作为@Mark Byers方法的替代方法,可以使用
while True:
guess = 50 # this should be outside the loop, I thinkwhile True: # infinite loop n = raw_input("nnTrue, False or Correct?: ") if n == "Correct": break # stops the loop elif n == "True": # etc.


