Answers for "how to loop over list python"

5

how to loop through list in python

thisList = [1, 2, 3, 4, 5, 6]

x = 0
while(x < len(thisList)):
    print(thisList[x])
    x += 1
    
# or you can do this:

for x in range(0, len(thisList)):
    print(thisList[x])
    
#or you can do this

for x in thisList:
    print(x)
Posted by: Guest on April-11-2020
1

how to iterate over a list in python

lst = [10, 50, 75, 83, 98, 84, 32] 
 
res = list(map(lambda x:x, lst))
 
print(res)
Posted by: Guest on July-23-2020
0

python how to loop in a list

fruits = ["apple", "banana", "strawberry"]

for fruit in fruits:
  print(fruit)
  #This "for fruit in fruits" gets every item in order from that list and does something with it
  #for example I print the fruit
  #note: This loop will only end when there aren't any items left in the list
  		 #example: After strawberry there isn't anything else soo the loop ends
#output: apple
		 #banana
  		 #stawberry
Posted by: Guest on October-13-2021

Python Answers by Framework

Browse Popular Code Answers by Language