You'd have already found out by my usage of terminology that I'm a python n00b.
straight forward question:
How can i see a list of methods for a particular object in an interactive python shell like i can in ruby (you can do that in ruby irb with a '.methods' after the object)?
If you want only methods, then
But do try out IPython, it has tab completion for object attributes, so typing
obj.<tab>
shows you a list of available attributes on that object.Its simple do this for any object you have created
it will return a list of all the attributes of the object.
dir( object )
will give you the list.
for instance:
will list off all the methods you can call for an integer.