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 obj
dir( object )
will give you the list.
for instance:
a = 2 dir( a )
will list off all the methods you can call for an integer.