python遍历 truple list dictionary的几种方法总结
更新时间:2016年09月11日 11:12:52 投稿:jingxian
下面小编就为大家带来一篇python遍历 truple list dictionary的几种方法总结。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧
实例如下:
def TestDic1(): dict2 ={'aa':222,11:222} for val in dict2: print val def TestDic2(): dict2 ={'aa':222,11:222} for (key,val) in dict2.items(): print key,":",val def TestList1(): list=[1,2,3,4,5,3,2,'ada','fs3'] for i in range(len(list)): print list[i] def TestDic3(): dict2 ={'aa':222,11:222} print "###########iteritems#################" for k,v in dict2.iteritems(): print "dict[%s]=" % k,v def TestDic4(): dict2 ={'aa':222,11:222} print "###########iterkeys,itervalues#######" for k,v in zip(dict2.iterkeys(),dict2.itervalues()): print "dict[%s]=" % k,v def TestList2(): list=[1,2,3,4,5,3,2,'ada','fs3'] for i in list: print i
以上这篇python遍历 truple list dictionary的几种方法总结就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。
您可能感兴趣的文章:
- Python中实现两个字典(dict)合并的方法
- Python中如何优雅的合并两个字典(dict)方法示例
- Python中字典(dict)合并的四种方法总结
- python dict 相同key 合并value的实例
- python字典DICT类型合并详解
- 对python 合并 累加两个dict的实例详解
- python两种遍历字典(dict)的方法比较
- python 字典(dict)遍历的四种方法性能测试报告
- python实现dict版图遍历示例
- python中dict字典的查询键值对 遍历 排序 创建 访问 更新 删除基础操作方法
- python实现在遍历列表时,直接对dict元素增加字段的方法
- python实现两个dict合并与计算操作示例
相关文章
讲解Python3中NumPy数组寻找特定元素下标的两种方法
这篇文章主要介绍了讲解Python3中NumPy数组寻找特定元素下标的两种方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2019-08-08
最新评论