‘dict’ object has no attribute 'has_key'

由python2.7 代碼更改成python3.5 時 dict 數據類型報錯python

產生緣由: dict.has_key()  ; python3 中刪除了該方法python2.7

解決方法:  使用 code

if key in dict : 更改成 if dict.has_key(key):
相關文章
相關標籤/搜索