Alando
在 Python3 里面, dict.has_key() 被移除了。
改成用 in 或者 not in:
例如:
>>> dict = {'Name': 'Zara', 'Age': 7} >>> print ('Height' in dict) False >>> print ('Height' not in dict) True
Ps:用 in 来判断键是否在字典里面,比 not in 要快。
相关文章:Python3 字典 in 操作符
感谢您的支持,我会继续努力的!
打开支付宝扫一扫,即可进行扫码打赏哦
点我查看本站打赏源码!
用户名
密码
记住登录状态 忘记密码?
邀请码
邮箱
重复输入密码
如何获取邀请码?