using below for the loop to see all the help options for dictionaries
for me in dir(dict): if not me.startswith("__"): help(dict.me)
error is AttributeError: type object 'dict' does not have me attribute
After resolving this issue, I can see all the data type help options
turn from a single answer and your question:
for me in dir(dict): if not me.startswith('__'): help(getattr(dict, me))
for me in dir(dict): if not me.startswith('__'): help(me)