use of break continue and pass in python code example
Example 1: python continue
for i in range(10):
if i == 3:
continue
print(i)
Example 2: python continue
nums = [7,3,-1,8,-9]
positive_nums = []
for num in nums:
if num < 0:
continue
positive_nums.append(num)
print(positive_nums)
Example 3: python break continue
words = ["rain", "sun", "moon", "exit", "weather"]
for word in words:
if word == "exit" :
break;
if word == "moon" :
print("moon is skipped")
continue
print ("This won't be printed")
print (word)