Answers for "while array 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
0

while loop python array

# Python3 code to iterate over a list
list = [1, 3, 5, 7, 9]
  
# Getting length of list
length = len(list)
i = 0
  
# Iterating using while loop
while i < length:
    print(list[i])
    i += 1
Posted by: Guest on March-02-2021
0

python iterate list

for var_name in input_list_name:
Posted by: Guest on August-27-2020

Python Answers by Framework

Browse Popular Code Answers by Language