python_枚举函数
1、枚举函数enumerate可以实现遍历list,元组,集合,字符串的编号和值,并且可以自定义编号从几开始
备注:如果是字典遍历的是KEY的值
list1=['zhaozhao1','zhaozhao2','zhaozhao3'] for index,value in enumerate(list1): #默认编号从0开始 print("编号%s"%index) print("编号%s的值--->%s" %(index,value)) for index,value in enumerate(list1,3): #可以定义编号从3开始 print("编号%s"%index) print("编号%s的值--->%s" %(index,value))