Python Tricks - Dictionary Tricks(0)

Dictionary Default Values

Python’s dictionaries have a get() method for looking up a key while providing a fallback value. This can be handy in many situations. Let me give you a simple example to show you what I mean. Imagine we have the following data structure that’s mapping user IDs to user names:

name_for_userid = { 
    382: 'Alice',
    950: 'Bob',
    590: 'Dilbert',
}

Now we’d like to use this data structure to write a function greeting() which will return a greeting for a user based on their user ID. Our first implementation might look something like this:

def greeting(userid):
  return 'Hi %s!' % name_for_userid[userid]

It’s a straightforward dictionary lookup. This first implementation technically works—but only if the user ID is a valid key in the name_for_userid dictionary. If we pass an invalid user ID to our greeting function it throws an exception:

>>> greeting(382) 
'Hi Alice!'

>>> greeting(33333333) 
KeyError: 33333333

A KeyError exception isn’t really the result we’d like to see. It would be much nicer if the function returned a generic greeting as a fallback if the user ID can’t be found.
这里是要将错误类型进行改造,以便让用户或者开发者有更好的使用体验

Let’s implement this idea. Our first approach might be to simply do a key in dict membership check and to return a default greeting if the user ID is unknown:

def greeting(userid):
  if userid in name_for_userid:
    return 'Hi %s!' % name_for_userid[userid] 
  else:
    return 'Hi there!'

Let’s see how this implementation of greeting() fares with our previous test cases:

>>> greeting(382) 
'Hi Alice!'

>>> greeting(33333333) 
'Hi there!'

Much better. We now get a generic greeting for unknown users and we keep the personalized greeting when a valid user ID is found.
使其更加通用化

But there’s still room for improvement. While this new implementation gives us the expected results and seems small and clean enough, it can still be improved. I’ve got some gripes with the current approach:

  • It’s inefficient because it queries the dictionary twice.
  • It’s verbose since part of the greeting string is repeated, for example.
  • It’s not Pythonic—the official Python documentation specifically recommends an “easier to ask for forgiveness than permission” (EAFP) coding style for these situations:

“This common Python coding style assumes the existence of valid keys or attributes and catches exceptions if the assumption proves false.”

A better implementation that follows the EAFP principle might use a try...except block to catch the KeyError instead of doing an explicit membership test:

def greeting(userid): 
  try:
    return 'Hi %s!' % name_for_userid[userid] 
  except KeyError:
    return 'Hi there'

This implementation is still correct as far as our initial requirements go, and now we’ve removed the need for querying the dictionary twice.

But we can still improve this further and come up with a cleaner solution. Python’s dictionaries have a get() method on them which supports a “default” parameter that can be used as a fallback value:

def greeting(userid):
  return 'Hi %s!' % name_for_userid.get(
        userid, 'there')

内置的字典支持get操作,可以直接设置在get失败后的返回值

When get() is called, it checks if the given key exists in the dictionary. If it does, the value for the key is returned. If it does not exist, then the value of the default parameter is returned instead. As you can see, this implementation of greeting still works as intended:
意思就是get方法被调用的时候,会检查被给定的键是否在字典中,如归在字典中,那么就会返回键对应的值。如果不在字典中,就返回默认的参数值

 >>> greeting(950) 
'Hi Bob!'

>>> greeting(333333) 
'Hi there!'

Our final implementation of greeting() is concise, clean, and only uses features from the Python standard library. Therefore, I believe it is the best solution for this particular situation.
嗯,果然作者还是更喜欢原生的方式

Key Takeaways
  • Avoid explicit key in dict checks when testing for membership.
  • EAFP-style exception handling or using the built-in get()
    method is preferable.
  • In some cases, the collections.defaultdict class from the
    standard library can also be helpful.
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 224,176评论 6 522
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 95,928评论 3 402
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 171,252评论 0 366
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 60,700评论 1 300
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 69,717评论 6 399
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 53,231评论 1 314
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 41,608评论 3 428
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 40,572评论 0 279
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 47,117评论 1 324
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 39,137评论 3 344
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 41,280评论 1 354
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 36,908评论 5 350
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 42,597评论 3 336
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 33,067评论 0 25
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 34,202评论 1 275
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 49,784评论 3 380
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 46,308评论 2 365

推荐阅读更多精彩内容