how to loop the length of an array pytoh

Solutions on MaxInterview for how to loop the length of an array pytoh by the best coders in the world

showing results for - "how to loop the length of an array pytoh"
Antonella
14 Sep 2018
1array = range(10)
2for i in range(len(array)):
3  print(array[i])