如何从Python字典中删除键?

ぃ、小莉子 提交于 2020-04-06 08:37:09

问题:

When deleting a key from a dictionary, I use: 从字典中删除键时,我使用:

if 'key' in myDict:
    del myDict['key']

Is there a one line way of doing this? 有没有一种方法可以做到这一点?


解决方案:

参考一: https://stackoom.com/question/lJm4/如何从Python字典中删除键
参考二: https://oldbug.net/q/lJm4/How-to-remove-a-key-from-a-Python-dictionary
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!