Answers for "while loop python array"

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

Python Answers by Framework

Browse Popular Code Answers by Language