Table of Contents:
The while
statement is used for repeated execution as long as the expression
is true. It repeatedly tests the expression and executes
statements within the code block until the condition fails to satisfy.
To skip statements for one time, we use continue
statement and to terminate the execution in special conditions, we use the break
statement.
The while
loop is used for iterating until the condition fails to satisfy.
Generally, the while
loop contains:
- A condition to check whether it satisfies to run further
- A statement that runs when it satisfied
- An update statement that is capable of dynamically changing the state that eventually changes the condition
while <condition>:
# statements that should executed while condition satisfies
<update statement>
Example: print the value from 1 upto 10
x = 1
while x <=10:
print('The current value of x is: ', x)
x += 1
print('The loop is completed')
Output:
The current value of x is: 1
The current value of x is: 2
The current value of x is: 3
The current value of x is: 4
The current value of x is: 5
The current value of x is: 6
The current value of x is: 7
The current value of x is: 8
The current value of x is: 9
The current value of x is: 10
The loop is completed
Example 2:
Write a program that inputs names of students until the user enters exit
and
display the list at the end.
name_list = []
name = ''
# we'll deal with break statement later
# at that time we'll be using while True
while name.lower() != 'exit':
name = input('Enter the name: ')
name_list.append(name)
print(name_list[:-1])
Output
Enter the name: ABC
Enter the name: DEF
Enter the name: GHI
Enter the name: JKL
Enter the name: exit
['ABC', 'DEF', 'GHI', 'JKL']
Syntax:
while <condition>:
statements
else:
alternative statements when while condition is not fulfilled
Example:
x = 1
while x <= 10:
print('The current value of x is: ', x)
x += 1
else:
print('Now the value is greater than 10')
Output
The current value of x is: 1
The current value of x is: 2
The current value of x is: 3
The current value of x is: 4
The current value of x is: 5
The current value of x is: 6
The current value of x is: 7
The current value of x is: 8
The current value of x is: 9
The current value of x is: 10
Now the value is greater than 10
To skip execution in some conditions, we can use continue
statement. The
break
statement breakes the execution out of the loop. These statements are
useful when we have infinite number of iterations and want to break on some
conditions.
Syntax:
while <condition>:
statements
if <special condition>:
break
if <some condition>:
continue
Example 1:
x = 0
while x < 100: # this indicates x can loop until it is 100
x += 1
if x % 3 == 0:
continue # this statement skips for all multiples of x
if x > 10:
break # This statement breaks the loop whenever the value of x > 10
print('The current value of x is: ', x)
Output:
The current value of x is: 1
The current value of x is: 2
The current value of x is: 4
The current value of x is: 5
The current value of x is: 7
The current value of x is: 8
The current value of x is: 10
Example 2: Write a program that displays all words entered by the user.
- The program should sensor slightly offensive words and skip execution for one time
- The program should immediately exit when highly offensive words are used
- Check the word if it is palindrome if it is not offensive.
offensive = ['dull', 'ugly', 'short',]
highly_offensive = ['dog', 'shit', 'damn', 'beat',]
while True:
word = input('\nEnter The word: ').lower()
if word in offensive:
print(f'The word {word[0]}{"*" * (len(word) - 1)} is offensive, so skipping execution...')
continue
if word in highly_offensive:
print("You used Highly offensive word, Good Bye!!")
break
if word == word[::-1]:
print('The word is palindrome')
else:
print('The word is not palindrome')
Output:
Enter The word: human
The word is not palindrome
Enter The word: rotator
The word is palindrome
Enter The word: ugly
The word u*** is offensive, so skipping execution...
Enter The word: short
The word s**** is offensive, so skipping execution...
Enter The word: dog
You used Highly offensive word, Good Bye!!
Nested while loop is used when we want to loop inside an another loop.If the
outer loop is capable of iterating 5 times and inner one is capable of iterating
10 times, then the total Nested loop can run 5 * 10 = 50
times.
Example 1: Multiplication Table from 4 to 6
num = 4
while num <= 6:
mul = 1
while mul <= 10:
print(f'{num:>2} X {mul:>2} = {(num * mul):>2}')
mul += 1
print()
num += 1
Output:
4 X 1 = 4
4 X 2 = 8
4 X 3 = 12
4 X 4 = 16
4 X 5 = 20
4 X 6 = 24
4 X 7 = 28
4 X 8 = 32
4 X 9 = 36
4 X 10 = 40
5 X 1 = 5
5 X 2 = 10
5 X 3 = 15
5 X 4 = 20
5 X 5 = 25
5 X 6 = 30
5 X 7 = 35
5 X 8 = 40
5 X 9 = 45
5 X 10 = 50
6 X 1 = 6
6 X 2 = 12
6 X 3 = 18
6 X 4 = 24
6 X 5 = 30
6 X 6 = 36
6 X 7 = 42
6 X 8 = 48
6 X 9 = 54
6 X 10 = 60
Example 2: A simple timer that runs for 24 hours
import time
hour = 0
while hour < 24:
minute = 0
while minute < 60:
second = 0
while second < 60:
time.sleep(1)
current_time = f'Time Elapsed: {hour:0>2} : {minute:0>2} : {second:0>2}'
print(current_time, end='\r')
second += 1
minute += 1
hour += 1
Output: example at 3 minutes and 39 seconds
Time Elapsed: 00 : 03 : 59