Loops in Python
ge
Loops are used to repeat instructions.
olle
C
while Loops
pna
while condition :
A
#some work
print hello 5 times
print numbers from 1 to 5
show infinite, iterator
, Let‘s Practice
e
Print numbers from 1 to 100.
lleg
Co
Print numbers from 100 to 1.
pna
A
Print the multiplication table of a number n.
Print the elements of the following list using a loop:
[1, 4, 9, 16, 25, 36, 49, 64, 81,100]
Search for a number x in this tuple using loop:
[1, 4, 9, 16, 25, 36, 49, 64, 81,100]
ge
Loops are used to repeat instructions.
olle
C
while Loops
pna
while condition :
A
#some work
print hello 5 times
print numbers from 1 to 5
show infinite, iterator
, Let‘s Practice
e
Print numbers from 1 to 100.
lleg
Co
Print numbers from 100 to 1.
pna
A
Print the multiplication table of a number n.
Print the elements of the following list using a loop:
[1, 4, 9, 16, 25, 36, 49, 64, 81,100]
Search for a number x in this tuple using loop:
[1, 4, 9, 16, 25, 36, 49, 64, 81,100]