Page 94 - KEC Khaitan C8 Flipbook
P. 94
Program 6: To demonstrate the use of the continue statement in a loop
Program6.py
File Edit Format Run Options Window Help
#Program to show the use of the continue statement
for number in range(0, 12):
if(number == 8):
continue
print('Number is:', number)
print('Out of loop')
On running the above program, we get the following output:
Output
Number is: 0
Number is: 1
Number is: 2
Number is: 3
Number is: 4
Number is: 5
Number is: 6
Number is: 7
Number is: 9
Number is: 10
Number is: 11
Out of loop
The example above prints all the numbers except 8 because when the value of number is equal
to 8, the continue statement placed inside the if statement will force the program to skip the
iteration.
SOME MORE PROGRAMS
Program 7: To create a number pattern using for loop
Program7.py
File Edit Format Run Options Window Help
#Program to create number pattern using for loop
for i in range(1,5):
print('3' * i)
92 Premium Edition-VIII

