有没有办法用相同的迭代重复一个循环?

Is there a way to repeat a loop with same iteration?

有没有办法用相同的迭代器重复循环而不 i 递增 1?

    for i in range(100):
        random_function()
        if status_code != 200:
            #repeat function with same iterator without incrementing by 1. 

使用while循环,自己控制增量

i = 0
while i < 100:
    foo()
    if status == 200:
        i += 1

或者将重试逻辑构建到您的“随机函数”中