python loop through list
list = [1, 3, 6, 9, 12]
for i in list:
print(i)
python loop through list
list = [1, 3, 6, 9, 12]
for i in list:
print(i)
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
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us