Answers for "the syntax of the for loop is:"

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 "the syntax of the for loop is:"

Python Answers by Framework

Browse Popular Code Answers by Language