[perl-python] 20050120 find functions in modules

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Xah Lee

    #1

    [perl-python] 20050120 find functions in modules

    © # -*- 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
    © xah@xahlee.org
    © http://xahlee.org/PageTwo_dir/more.html

Working...