Answers for "iterate over elements in list python"

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
4

iterate over list of strings python

# Iterate through a string using a for loop
name="Nagendra"
for letter in name:
  print(letter)
  
# Iterate through a string using a for loop 
index = 0
while index<len(name):
  print(index)
  index += 1
#Iterate through a list of strings using a for loop
list_names = ['Nagendra','Nitesh','Sathya']
for name in list_names:
  print(name)
  
#Iterate through a string using a while loop
list_names = ['Nagendra','Nitesh','Sathya']
index = 0
while index<len(list_names):
  print(list_names[i])
  index += 1
Posted by: Guest on June-16-2020
2

iterate through a list

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

python iterate through list

for row in list:
Posted by: Guest on February-01-2021

Code answers related to "iterate over elements in list python"

Python Answers by Framework

Browse Popular Code Answers by Language