prov:value
| - Introducing dir>>> li = []>>> dir(li) ???[append, count, extend, index, insert,pop, remove, reverse, sort]>>> d = {}>>> dir(d) ???[clear, copy, get, has_key, items, keys, setdefault, update, values]>>> import odbchelper>>> dir(odbchelper) ???[__builtins__, __doc__, __file__, __name__, buildConnectionString]??? li is a list, so dir(li) returns a list of all the methods of a list.
|