[perl-python] 20050120 find functions in modules

X

Xah Lee

© # -*- coding: utf-8 -*-
© # Python
©
© # once a module is loaded
© # import mymodule
© # one can find all the names it
© # export with dir()
©
© import sys
© print dir(sys)
©
© # without argument it gives the names
© # you've defined
© print dir()
©
© # to find a list of built-in names
© # import the module __builtin__
© # and use dir on it.
© import __builtin__
© print dir(__builtin__)
©
© # see
© # http://python.org/doc/2.3.4/tut/node8.html
©
© ----------------
© # in Perl, Perl experts can achieve
© # similar functionality by, for example:
©
© use Data::Dumper ('Dumper');
© print Dumper \%Data::Dumper::;
©
© # it has to do with understanding the inner
© # mechanisms of Perl's module system.
©
© ---------------
©
© Note: this post is from the Perl-Python
© a-day mailing list at
© http://groups.yahoo.com/group/perl-python/
© to subscribe, send an email to
© perl-python-subscribe @ yahoogroups.com if
© you are reading it on a web page,
© program examples may not run because
© html conversion often breaks the code.
©
© Xah
© (e-mail address removed)
© http://xahlee.org/PageTwo_dir/more.html
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,744
Messages
2,569,482
Members
44,901
Latest member
Noble71S45

Latest Threads

Top