how to loop in list of string in python code example

Example 1: 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

Example 2: 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)

Tags:

Cpp Example