Answers for "why we have to use continue python instead of if"

0

continue statement in python

for i in range (10):
    if i == 5:
            continue 
    print(i)
Posted by: Guest on January-11-2022

Python Answers by Framework

Browse Popular Code Answers by Language