This is probably on me being a newbie and not knowing where to look, but I feel like if I go "hm, I want to know what the methods are for Python's dicts", the official docs should be not just easy to find, but the first search result
@socks The python docs are _really_ bad about this, mostly because all the types are together in the same "built in types" page in the actual manual
You probably want: https://docs.python.org/3/library/stdtypes.html#mapping-types-dict
@KS Wow yeah that's hard to find. Thank you!