Python字典(Dictionary)详解

字典中的函数

  • dict.get(key, default=None)
    • key – 字典中要查找的键
    • default – 如果指定键的值不存在时,返回该默认值值。

你可能感兴趣的:(python)