pglpm
0
Q:

python for continue

for i in range(10):
  if i == 3: # skips if i is 3
    continue
  print(i)
6
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
3
>>> for num in range(2, 10):
...     if num % 2 == 0:
...         print("Found an even number", num)
...         continue
...     print("Found a number", num)
Found an even number 2
Found a number 3
Found an even number 4
Found a number 5
Found an even number 6
Found a number 7
Found an even number 8
Found a number 9
3
nums = [6,8,0,5,3]
product = 1

for num in nums:
  if num == 0:
    product = 0
    break # stops the for loop
  product *= num

print(product)
5
number = 0

for number in range(10):
    if number == 5:
        break    # break here

    print('Number is ' + str(number))

print('Out of loop')

4
# Example of continue loop:

for number is range (0,5):
    # If the number is 4, skip the rest of the loop and continue from the top.
    if number == 4:
      continue
    
    print(f"Number is: {number}")
0
print("hi")
0

New to Communities?

Join the community