Answers for "what is the syntax of for loop?"

7

for loop

# continue statement and for loop

for a in range(0,10):
    if a**2 <=9:
        continue 
    print(a)
print('strain')
Posted by: Guest on November-24-2021

Code answers related to "what is the syntax of for loop?"

Python Answers by Framework

Browse Popular Code Answers by Language