橘子味的心
标题:Python3 通过索引迭代

Python3 通过索引迭代

#!/usr/bin/python3

fruits = ['banana', 'apple',  'mango']
for index in range(len(fruits)):
   print ('Current fruit :', fruits[index])

print ("Good bye!")

目录

分类