Answers for "loop through a list python"

54

python loop through list

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

list loop python

list = [1, 3, 5, 7, 9] 

# with index   
for index, item in enumerate(list): 
    print (item, " at index ", index)
    
# without index
for item in list:
  	print(item)
Posted by: Guest on March-18-2020
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
2

python iterate list

lst = [10, 50, 75, 83, 98, 84, 32]
 
for x in range(len(lst)): 
    print(lst[x])
Posted by: Guest on August-27-2020
2

iterate through a list

my_list = ["Hello", "World"]
for i in my_list:
  print(i)
Posted by: Guest on November-30-2020
1

Python Loop Lists

thislist = ["apple", "banana", "cherry"]
for x in thislist:
  print(x)
Posted by: Guest on February-28-2021

Code answers related to "loop through a list python"

Python Answers by Framework

Browse Popular Code Answers by Language