Python update a key in dict if it doesn't exist

前端 未结 5 1619
清歌不尽
清歌不尽 2020-12-24 11:17

I want to insert a key-value pair into dict if key not in dict.keys(). Basically I could do it with:

if key not in d.keys():
    d[key] = value
5条回答
  •  太阳男子
    2020-12-24 11:53

    You do not need to call d.keys(), so

    if key not in d:
        d[key] = value
    

    is enough. There is no clearer, more readable method.

    You could update again with dict.get(), which would return an existing value if the key is already present:

    d[key] = d.get(key, value)
    

    but I strongly recommend against this; this is code golfing, hindering maintenance and readability.

提交回复
热议问题