+ 1
Guys any one please say what is for loop and its uses
For loop and its uses
1 Answer
+ 1
for loops and while loops are very similar. you should take a look at your lessons, theyâre very clear on how to use them. theyâre mostly used for iterating through lists/arrays but can be used for other things as well.
while i<5:
print(âhello!â)
for i in range(5)
print(âhello!)
>> these are both printing âhello!â 5 times.
mylist= [âhelloâ, âwelcomeâ, âgoodbyeâ]
x = 0
while x<len(mylist)-1:
print(x + â!â)
x += 1
for items in mylist:
print(items + â!â)
>> these are both printing each element from the list with an exclamation point added to the end.
see how for loops and while loops can do the same thing, but for loops are just better than while loops in some cases?