For Loop in Python
For loop has very significant role in any programming language so as in python.
Here we see some of the examples of for loop in python...
For loop in Python:
for x in range(0,5):
print(x)
Here for every iteration i.e. starting from 0 to 4 it prints the value of x
Answer:
0
1
2
3
4
Let us take
name = "techuplift"
for x in name:
print(x)
Answer:
t
e
c
h
u
p
l
i
f
t
fruits=["apple","banana","citrus"]
for x in fruits:
print(x)
Answer:
apple
banana
citrus
examples too be continued...
Here we see some of the examples of for loop in python...
For loop in Python:
for x in range(0,5):
print(x)
Here for every iteration i.e. starting from 0 to 4 it prints the value of x
Answer:
0
1
2
3
4
Let us take
name = "techuplift"
for x in name:
print(x)
Answer:
t
e
c
h
u
p
l
i
f
t
fruits=["apple","banana","citrus"]
for x in fruits:
print(x)
Answer:
apple
banana
citrus
examples too be continued...
Comments
Post a Comment