12

我试图弄清楚如何让 Python 回到代码的顶部。在 SmallBasic 中,您可以

start:
    textwindow.writeline("Poo")
    goto start

但我不知道你是如何在 Python 中做到这一点的:/ 有什么想法吗?

我试图循环的代码是这个

#Alan's Toolkit for conversions

def start() :
    print ("Welcome to the converter toolkit made by Alan.")
    op = input ("Please input what operation you wish to perform. 1 for Fahrenheit to Celsius, 2 for meters to centimetres and 3 for megabytes to gigabytes")

if op == "1":
    f1 = input ("Please enter your fahrenheit temperature: ")
    f1 = int(f1)

    a1 = (f1 - 32) / 1.8
    a1 = str(a1)

    print (a1+" celsius") 

elif op == "2":
    m1 = input ("Please input your the amount of meters you wish to convert: ")
    m1 = int(m1)
    m2 = (m1 * 100)

    m2 = str(m2)
    print (m2+" m")


if op == "3":
    mb1 = input ("Please input the amount of megabytes you want to convert")
    mb1 = int(mb1)
    mb2 = (mb1 / 1024)
    mb3 = (mb2 / 1024)

    mb3 = str(mb3)

    print (mb3+" GB")

else:
    print ("Sorry, that was an invalid command!")

start()

所以基本上,当用户完成转换时,我希望它循环回到顶部。我仍然无法将您的循环示例付诸实践,因为每次我使用 def 函数进行循环时,它都会说未定义“op”。

4

7 回答 7

18

使用无限循环:

while True:
    print('Hello world!')

这当然也适用于您的start()功能;您可以使用 退出循环break,或者使用return完全退出函数,这也终止了循环:

def start():
    print ("Welcome to the converter toolkit made by Alan.")

    while True:
        op = input ("Please input what operation you wish to perform. 1 for Fahrenheit to Celsius, 2 for meters to centimetres and 3 for megabytes to gigabytes")

        if op == "1":
            f1 = input ("Please enter your fahrenheit temperature: ")
            f1 = int(f1)

            a1 = (f1 - 32) / 1.8
            a1 = str(a1)

            print (a1+" celsius") 

        elif op == "2":
            m1 = input ("Please input your the amount of meters you wish to convert: ")
            m1 = int(m1)
            m2 = (m1 * 100)

            m2 = str(m2)
            print (m2+" m")

        if op == "3":
            mb1 = input ("Please input the amount of megabytes you want to convert")
            mb1 = int(mb1)
            mb2 = (mb1 / 1024)
            mb3 = (mb2 / 1024)

            mb3 = str(mb3)

            print (mb3+" GB")

        else:
            print ("Sorry, that was an invalid command!")

如果您还要添加退出选项,则可能是:

if op.lower() in {'q', 'quit', 'e', 'exit'}:
    print("Goodbye!")
    return

例如。

于 2013-09-13T17:22:39.410 回答
9

与大多数现代编程语言一样,Python 不支持“goto”。相反,您必须使用控制功能。基本上有两种方法可以做到这一点。

1. 循环

您如何完全按照 SmallBasic 示例所做的示例如下:

while True :
    print "Poo"

就是这么简单。

2. 递归

def the_func() :
   print "Poo"
   the_func()

the_func()

关于递归的注意事项:仅当您想要回到开头的特定次数时才执行此操作(在这种情况下,添加一个递归应该停止的情况)。像我上面定义的那样进行无限递归是一个坏主意,因为你最终会耗尽内存!

编辑以更具体地回答问题

#Alan's Toolkit for conversions

invalid_input = True
def start() :
    print ("Welcome to the converter toolkit made by Alan.")
    op = input ("Please input what operation you wish to perform. 1 for Fahrenheit to Celsius, 2 for meters to centimetres and 3 for megabytes to gigabytes")
    if op == "1":
        #stuff
        invalid_input = False # Set to False because input was valid


    elif op == "2":
        #stuff
        invalid_input = False # Set to False because input was valid
    elif op == "3": # you still have this as "if"; I would recommend keeping it as elif
        #stuff
        invalid_input = False # Set to False because input was valid
    else:
        print ("Sorry, that was an invalid command!")

while invalid_input: # this will loop until invalid_input is set to be False
    start()
于 2013-09-13T17:24:25.447 回答
2

Python 有控制流语句而不是goto语句。控制流的一种实现是 Python 的while循环。您可以给它一个布尔条件(布尔值在 Python 中为 True 或 False),循环将重复执行,直到该条件变为 false。如果你想永远循环,你所要做的就是开始一个无限循环。

如果您决定运行以下示例代码,请务必小心。如果您想终止该进程,请在 shell 运行时按 Control+C。请注意,该进程必须在前台才能正常工作。

while True:
    # do stuff here
    pass

该行# do stuff here只是一个注释。它不执行任何操作。pass只是python中的一个占位符,基本上说“嗨,我是一行代码,但跳过我,因为我什么都不做。”

现在假设你想永远重复地要求用户输入,并且只有当用户输入字符'q'退出程序时才退出程序。

你可以这样做:

while True:
    cmd = raw_input('Do you want to quit? Enter \'q\'!')
    if cmd == 'q':
        break

cmd将只存储用户输入的任何内容(将提示用户输入内容并按回车键)。如果cmd只存储字母“q”,代码将强制break退出其封闭循环。该break语句使您可以逃脱任何类型的循环。甚至是无限的!如果您想对经常在无限循环上运行的用户应用程序进行编程,了解这一点非常有用。如果用户没有准确地键入字母“q”,用户将被反复无休止地提示,直到进程被强制终止或用户决定他已经受够了这个烦人的程序并只想退出。

于 2013-09-13T17:23:03.883 回答
2

你可以很容易地用循环来做,有两种类型的循环

对于循环:

for i in range(0,5):
    print 'Hello World'

While循环:

count = 1
while count <= 5:
    print 'Hello World'
    count += 1

这些循环中的每一个都会打印五次“Hello World”

于 2013-09-13T17:27:06.783 回答
0

编写一个 for 或 while 循环并将所有代码放入其中?Goto 类型编程已成为过去。

https://wiki.python.org/moin/ForLoop

于 2013-09-13T17:22:45.227 回答
0

您需要使用 while 循环。如果你做了一个while循环,而循环之后没有指令,它就会变成一个无限循环,直到你手动停止它才会停止。

于 2013-09-13T17:24:53.093 回答
-1
def start():

Offset = 5

def getMode():
    while True:
        print('Do you wish to encrypt or decrypt a message?')
        mode = input().lower()
        if mode in 'encrypt e decrypt d'.split():
            return mode
        else:
            print('Please be sensible try just the lower case')

def getMessage():
    print('Enter your message wanted to :')
    return input()

def getKey():
    key = 0
    while True:
        print('Enter the key number (1-%s)' % (Offset))
        key = int(input())
        if (key >= 1 and key <= Offset):
            return key

def getTranslatedMessage(mode, message, key):
    if mode[0] == 'd':
        key = -key
    translated = ''

    for symbol in message:
        if symbol.isalpha():
            num = ord(symbol)
            num += key

            if symbol.isupper():
                if num > ord('Z'):
                    num -= 26
                elif num < ord('A'):
                    num += 26
            elif symbol.islower():
                if num > ord('z'):
                    num -= 26
                elif num < ord('a'):
                    num += 26

            translated += chr(num)
        else:
            translated += symbol
    return translated

mode = getMode()
message = getMessage()
key = getKey()

print('Your translated text is:')
print(getTranslatedMessage(mode, message, key))
if op.lower() in {'q', 'quit', 'e', 'exit'}:
    print("Goodbye!")
    return
于 2015-01-12T13:54:40.543 回答