Quote:
Originally Posted by Sane
I keep "Python Command Line" open on the side.
>>> import os
>>> dir(os)
[a list of all the methods of os here]
>>> help(os.system)
[description of function, list of parameters, and any additional notes that were left] It may not be as fast, but it's perhaps even more useful.
|
Hm...this is useful for Python's own set of commands, but not for the project i'm working on, which around 10-20 people are working on it. Not to mention no documentation for it, but that's a different issue.