Answers for "Iterate over a list in Pytho"

54

python loop through list

list = [1, 3, 6, 9, 12] 
   
for i in list: 
    print(i)
Posted by: Guest on June-25-2019
1

iterating over elements of list

# Python3 code to iterate over a list
list = [1, 3, 5, 7, 9]
  
# Using for loop
for i in list:
    print(i)
Posted by: Guest on June-15-2021
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