web-dev-qa-db-ja.com

プログラムを閉じるのではなくコードの先頭に戻す方法

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」は定義されていないと言われるため、ループの例をこれで実践することはできません。

9
monkey334

Pythonは、ほとんどの最新のプログラミング言語と同様、「goto」をサポートしていません。代わりに、制御機能を使用する必要があります。これを行うには、本質的に2つの方法があります。

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 True
    start()
5
River Tam

無限ループを使用します。

_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
_

例えば。

16
Martijn Pieters

ループで簡単に行うことができます。2種類のループがあります

Forループ:

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

Whileループ:

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

これらの各ループは、 "Hello World"を5回出力します

2
K DawG

Pythonには、gotoステートメントの代わりに制御フローステートメントがあります。制御フローの実装の1つは、Pythonのwhileループです。ブール条件(ブール値はPythonではTrueまたはFalseのいずれか)を与えることができ、ループはその条件がfalseになるまで繰り返し実行されます。永久にループしたい場合は、無限ループを開始するだけです。

次のサンプルコードを実行する場合は注意してください。プロセスを強制終了する場合は、シェルの実行中に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は、ユーザーが入力したものをすべて保存します(ユーザーは何かを入力してEnterキーを押すように求められます)。 cmdが文字 'q'のみを格納している場合、コードはそのループを強制的にbreakします。 breakステートメントを使用すると、あらゆる種類のループをエスケープできます。無限のものでも!無限ループで実行されることが多いユーザーアプリケーションをプログラムする必要があるかどうかを知ることは非常に役立ちます。ユーザーが文字「q」を正確に入力しない場合、プロセスが強制的に強制終了されるか、ユーザーがこの厄介なプログラムを十分に持っていると判断して終了するまで、ユーザーは繰り返し無限にプロンプ​​トを表示されます。

2
Shashank

Whileループを使用する必要があります。 whileループを作成し、ループの後に命令がない場合、無限ループになり、手動で停止するまで停止しません。

0
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
0
ChipperChimp968

forループまたはwhileループを記述し、その中にすべてのコードを入れますか?後藤型プログラミングは過去のものです。

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

0
A.J.