Python中的Goto,Label的替代品?

时间:2016-07-21 04:12:59

标签: python goto

我知道我不能使用Goto而且我知道Goto不是答案。我读过类似的问题,但我无法找到解决问题的方法。

所以,我正在编写一个程序,你必须猜出一个数字。这是我遇到问题的部分摘录:

x = random.randint(0,100)    

#I want to put a label here

y = int(raw_input("Guess the number between 1 and 100: "))

if isinstance( y, int ):
    while y != x:
        if y > x:
            y = int(raw_input("Wrong! Try a LOWER number: "))
        else:
            y = int(raw_input("Wrong! Try a HIGHER number "))
else:
    print "Try using a integer number"
    #And Here I want to put a kind of "goto label"`

你会做什么?

3 个答案:

答案 0 :(得分:6)

有很多方法可以做到这一点,但通常你会想要使用循环,你可能想要探索breakcontinue。这是一个可能的解决方案:

import random

x = random.randint(1, 100)

prompt = "Guess the number between 1 and 100: "

while True:
    try:
        y = int(raw_input(prompt))
    except ValueError:
        print "Please enter an integer."
        continue

    if y > x:
        prompt = "Wrong! Try a LOWER number: "
    elif y < x:
        prompt = "Wrong! Try a HIGHER number: "
    else:
        print "Correct!"
        break

continue跳转到循环的下一次迭代,break完全终止循环。

(另请注意,我在try / except中包装int(raw_input(...))以处理用户未输入整数的情况。在您的代码中,不输入整数只会导致异常。我更改了randint调用中的0到1也是如此,因为根据您正在打印的文本,您打算在1到100之间选择,而不是0到100之间。)

答案 1 :(得分:1)

Python不支持goto或任何等效的。

您应该考虑如何使用python为您提供的工具来构建程序。看起来你需要使用一个循环来完成你想要的逻辑。您应该查看control flow page以获取更多信息。

x = random.randint(0,100)
correct = False
prompt = "Guess the number between 1 and 100: "

while not correct:

  y = int(raw_input(prompt))
  if isinstance(y, int):
    if y == x:
      correct = True
    elif y > x:
      prompt = "Wrong! Try a LOWER number: "
    elif y < x:
      prompt = "Wrong! Try a HIGHER number "
  else:
    print "Try using a integer number"

在许多其他情况下,您将要使用function来处理您要使用goto语句的逻辑。

答案 2 :(得分:0)

您可以使用无限循环,并在必要时也显式中断。

x = random.randint(0,100)

#I want to put a label here
while(True):
    y = int(raw_input("Guess the number between 1 and 100: "))

    if isinstance( y, int ):

    while y != x:
    if y > x:
        y = int(raw_input("Wrong! Try a LOWER number: "))
    else:
        y = int(raw_input("Wrong! Try a HIGHER number "))
    else:
      print "Try using a integer number"

     # can put a max_try limit and break