Python2_conditional statement_2
Python2_conditional statement_2
1. For Loops
2. While Loops
for Loops in Python
No
Example 1:
flowers = ['rose','lotus','jasmine']
for flower in flowers: OUTPUT
Current flower: rose
print('Current flower: ', flower) Current flower: lotus
Current flower: jasmine
for Loops in Python
Example 2: program using for loop to calculate t he
average of first n number.
n = int(input("Enter the value of n : "))
avg = 0.0
sum = 0 OUTPUT:
for i in range(1,n+1): Enter the value of n : 5
The sum of first 5 natural number is 15
sum = sum+i The average of first 5 natural number is 3.0
avg = sum/i
print("The sum of first", n,"natural number is ", sum)
print("The average of first", n,"natural number is ", avg)
for Loop with else Statement in
Python
The else keyword in a for loop specifies a block of code to be
executed when the loop is finished.
In simple terms, range() allows user to generate a series of numbers within a given
range. Depending on how many arguments user is passing to the function, user can
decide where that series of numbers will begin and end as well as how big the
difference will be between one number and the next. range() takes mainly three
arguments.
OUTPUT
Current flower: rose
Current flower: lotus
Current flower: jasmine
while loop in python
With the while loop we can execute a set of statements as long
as a condition is true.
Statement X
Statement Block
True
False
i=0
sum = 0
while(i<=10):
OUTPUT:
sum = sum+i sum = 55
i = i+1 avg = 5.5
avg = float(sum)/10
print('sum = ', sum)
print('avg = ', avg)
while loop in python
Example 3: program to calculate the sum of numbers from m to
n.
www.nielit.gov.in/haridwar