For loop vs while loop Flashcards

1
Q

What is the difference between While loop and For loop?

A

While loop is to iterate over a condition . For loop is used to iterate over a list or string

Example -:

i =1
while i < 10:
print(i)

x = “hello world”

for i in x :
print (i)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly