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)