标签:for循环 摘要 extend union 百度 插入 level 映射关系 位置
初次编辑2017年10月12日,星期四
引用:百度
easons = [‘Spring‘, ‘Summer‘, ‘Fall‘, ‘Winter‘]
list(enumerate(seasons))
[(0, ‘Spring‘), (1, ‘Summer‘), (2, ‘Fall‘), (3, ‘Winter‘)]
list(enumerate(seasons, start=1)) # 小标从 1 开始
[(1, ‘Spring‘), (2, ‘Summer‘), (3, ‘Fall‘), (4, ‘Winter‘)]
标签:for循环 摘要 extend union 百度 插入 level 映射关系 位置
原文地址:http://www.cnblogs.com/sama/p/7684232.html