python中dict的元素取值
dict.get(key, default=None)● key – 字典中要查找的键。● default – 如果指定键的值不存在时,返回该默认值值。{'1*': 9, '2*': 6, '**': 15}.values()Out[377]: dict_values([9, 6, 15]){'1*': 9, '2*': 6, '**': 15}.keys()Out[378]: dict_keys(['1*', '2*', '**']){'1*': 9, '2*': 6, '**': 1



