Python中for循环简单示例

#-*-coding:utf-8-*-
import sys
if __name__=="__main__":
	itemlist=[2,4,5,7,8]
	for i in itemlist:
		print i

你可能感兴趣的:(Python)