Python 编程指南 | 如何判断字典中是否存在某个键
为确认字典中是否存在指定键,可以利用 in
关键字进行检查:
1 | #!/usr/bin/env python3 |
此代码检测 info_dict
字典是否包含 tag_id
键。如果包含,则打印确认消息:键 'tag_id' 存在于 info_dict 字典中。
;否则打印:字典 info_dict 中不存在键 'tag_id'。
。
(END)
All articles on this blog are licensed under CC BY-NC-SA 4.0 unless otherwise stated.