kiran
0
Q:

python continue

import numpy as np
values=np.arange(0,10)
for value in values:
  if value==3:
    continue
  elif value==8:
    print('Eight value')
  elif value==9:
    break
5
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
# 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
#!/usr/bin/python

for num in range(10,20):  #to iterate between 10 to 20
   for i in range(2,num): #to iterate on the factors of the number
      if num%i == 0:      #to determine the first factor
         j=num/i #to calculate the second factor
         print '%d equals %d * %d' % (num,i,j)
         break #to move to the next number, the #first FOR
   else:        # else part of the loop
      print num, 'is a prime number'
-1

New to Communities?

Join the community