Python学习-dictionary字典

Posted hao1025

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python学习-dictionary字典相关的知识,希望对你有一定的参考价值。

dictionary的遍历是对key的遍历,key的选择顺序是无序的:

def print_hist(h):
  for c in h:
  print c, h[c]

 dict反向查找并抛出异常:

def reverse_lookup(d, v):
  for k in d:
  if d[k] == v:
  return k
  raise ValueError,‘找不到元素‘

 初始化 dict:

eng2sp = {‘one‘: ‘uno‘, ‘two‘: ‘dos‘, ‘three‘: ‘tres‘}

dict长度

len(eng2sp)

in操作符,用于判断是否包含特定的key

>>> ‘one‘ in eng2sp
True
>>> ‘uno‘ in eng2sp
False  

values操作符将 dict转换为list,然后用in来判断是否包含特定的value

>>> vals = eng2sp.values()
>>> ‘uno‘ in vals
True

 

 

 

 



 



以上是关于Python学习-dictionary字典的主要内容,如果未能解决你的问题,请参考以下文章

Python学习-dictionary字典

Python学习心得 字典Dictionary

Python学习:字典(dictionary)

Python学习之字典

Python每日学习笔记之Dictionary

python字典学习