> Hi all, i'm a newbie to python and now learning OOP. How do i display > methods or properties that is owned by a class or a module? for example: i > know that module sys has a property/method called path. i want to know > what other methods it has, how do i find them from python command line?
Try: import sys dir(sys) help(sys) HTH, Alan G Author of the learn to program web tutor http://www.freenetpages.co.uk/hp/alan.gauld _______________________________________________ Tutor maillist - [email protected] http://mail.python.org/mailman/listinfo/tutor
