サーチ…


前書き

Python関数では、実行が "return"ステートメントに達するとすぐに返されます。

関数内のループ内の文を返す

この例では、値varが1になるとすぐに関数が戻ります

def func(params):
    for value in params:
        print ('Got value {}'.format(value))

        if value == 1:
            # Returns from function as soon as value is 1
            print (">>>> Got 1")
            return

        print ("Still looping")

    return "Couldn't find 1"

func([5, 3, 1, 2, 8, 9])

出力

Got value 5
Still looping
Got value 3
Still looping
Got value 1
>>>> Got 1


Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow