Answers for "how to skip iterations in a loop"

1

skip items for loop

ls = ["a", "b", "c"]

for index, item in enumerate(ls):
    # if index == 2:
        print(index)
        print(item)
Posted by: Guest on May-18-2021
5

python how to skip iteration

nums = [7,3,-1,8,-9]
positive_nums = []

for num in nums:
    if num < 0: #skips to the next iteration
        continue
    positive_nums.append(num)
        
print(positive_nums) # 7,3,8
Posted by: Guest on May-25-2020

Python Answers by Framework

Browse Popular Code Answers by Language