resort = 'If you could visit one place in the world,' resort += 'where would you go?---' while resort != 'quit': print("You like to {}.".format(resort)) resort = input()
因为你的的 resort 没有重新赋值啊,只要你第一次输入的不是quit,他就会死循环了...