Answers for "for loop of an array in 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

loop over an array

let fruits = ['Apple', 'Banana'];

fruits.forEach(function(item, index, array) {
  console.log(item, index);
});
// Apple 0
// Banana 1
Posted by: Guest on November-22-2020

Code answers related to "for loop of an array in python"

Python Answers by Framework

Browse Popular Code Answers by Language