When information about a type is needed you can use:
my_list = [] dir(my_list)
gets:
[\'__add__\', \'__class__\', \'__conta
Or
help(list.append)
if you're generally poking around.