报错 'dict' object has no attribute 'has_key'

has_key方法在python2中是可以使用的,在python3中删除了。

比如:

if dict.has_key(word):

改为:

if word in dict:

上一篇:51nod1086 背包问题 V2


下一篇:shell脚本简单加载动画