.. _consider-using-dict-items: consider-using-dict-items / C0206 ================================= **Message emitted:** Consider iterating with .items() **Description:** *Emitted when iterating over the keys of a dictionary and accessing the value by index lookup. Both the key and value can be accessed by iterating using the .items() method of the dictionary instead.* Created by ``refactoring`` checker