如果If-Condition为True,如何从beginn开始For-Loop

时间:2016-01-06 11:08:26

标签: python python-3.x for-loop

如果$app['serviceFactory'] = $app->share(function () { return new CApiServiceFactory; }); .... // later, when you need the API: API::setApiServiceFactory($app['serviceFactory']); 条件为True,我想知道如何从0开始for - 循环

if

Break在这里没有帮助,因为有了break我只能离开if Condition,但我也想从头开始for循环。

2 个答案:

答案 0 :(得分:0)

你可以试试这个而不是for循环。

i = 0
while i < 3:
    if a == 1:
        i = 0
    i += 1

如果等于1

,这将继续遍历循环

答案 1 :(得分:-1)

我想你可能会这样写

if 1 == a:
    for i in range(3):
        pass