摘要: for循环的使用 1 在list 或 dictionary 使用 list = [1,2,3,4,5,6] for i in list: list print(i) for item in dic: dictionary print(dic[item]) 2 使用range()函数,该函数... 阅读全文
posted @ 2016-01-15 20:24 阿文的博客 阅读(124) 评论(0) 推荐(0) 编辑