A simple way to use this capability is the command line:
> python3 <-- Python3 command line mode
...
>>> s = "abc" <-- create a object (it's a string)
>>> type(s) <-- get object class
...
>>> dir(s) <-- get object methods
...
>>> help(str) <-- get object help
...
>>> quit() <-- quit command line