在函式中迴圈返回語句

在此示例中,函式將在值 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