后来发现时Python版本太新的原因!Python3以后删除了has_key()方法!
解决办法:
1、重新安装个Python,推荐2.7.6,用的人多些。好多人不习惯用3,仍然在用2
2、修改代码
if not rmap.has_key(cls):
改为
if cls not in rmap:
AttributeError: 'dict' object has no attribute 'has_key'
时间: 2024-10-07 00:46:31
后来发现时Python版本太新的原因!Python3以后删除了has_key()方法!
解决办法:
1、重新安装个Python,推荐2.7.6,用的人多些。好多人不习惯用3,仍然在用2
2、修改代码
if not rmap.has_key(cls):
改为
if cls not in rmap:
AttributeError: 'dict' object has no attribute 'has_key'