no-dict-iterkeys

在 Python 3 中已删除 dict.iterkeys 方法。请改用以下方法:

for KEY in DICT:
    pass