脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - python遍历 truple list dictionary的几种方法总结

python遍历 truple list dictionary的几种方法总结

2020-09-06 12:14Python教程网 Python

下面小编就为大家带来一篇python遍历 truple list dictionary的几种方法总结。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧

实例如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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的几种方法总结就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

延伸 · 阅读

精彩推荐