Python 通过索引迭代列表 Python for循环 Python for循环质数 Python 通过索引迭代列表 #!/usr/bin/python fruits = ['banana', 'apple', 'mango'] for index in range(len(fruits)): print 'Current fruit :', fruits[index] print "Good bye!" Python for循环 Python for循环质数