Answers for "exit retry function python"

1

python try then change something and try again if fails

for i in range(0,100):
    while True:
        try:
            # do stuff
        except SomeSpecificException:
            continue
        break
Posted by: Guest on October-16-2020

Python Answers by Framework

Browse Popular Code Answers by Language