loop skip code example
Example: skip items for loop
ls = ["a", "b", "c"]
for index, item in enumerate(ls):
# if index == 2:
print(index)
print(item)
ls = ["a", "b", "c"]
for index, item in enumerate(ls):
# if index == 2:
print(index)
print(item)