Python 字典访问的三种方法

在python程序开发中,经常对字典数据操作,例如:
dict = {'Name': 'Zara', 'Age': 7}遍历该数据key,value
python语言提供三种方法处理该数据:

  • 方法1:
for key in dict:
    print key,dic[key]
    print key+str(dic[key])
  • 方法二
for key,value in dict.items():
    print key,value
  • 方法三
for k,v in dic.iteritems():
    print key,value

你可能感兴趣的:(Python 字典访问的三种方法)