dict-iterkeys は使用しない

dict.iterkeys メソッドは、Python 3 で削除されました。代わりに次のコマンドを使用します。

for KEY in DICT:
    pass