Answers for "skip certain number of iterations python"

4

skip to next iteration in for loop python

for i in range(1,11):
    if i==5:
        continue
    print (i)
Posted by: Guest on April-14-2020
0

how to skip number in while loop python

def skip_down(num, skip):
    count = 0
    lst = [0]
    while count< num:
        count = count + skip
        lst.append(count)
    return lst
print(skip_down(10, 3))
Posted by: Guest on December-06-2020

Code answers related to "skip certain number of iterations python"

Python Answers by Framework

Browse Popular Code Answers by Language