no-dict-iterkeys

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

for KEY in DICT:
    pass