Some Silly Questions

Chris Angelico rosuav at gmail.com
Sat Sep 15 13:26:25 EDT 2012


On Sun, Sep 16, 2012 at 3:18 AM, Subhabrata <subhabangalore at gmail.com> wrote:
> Dear Group,
>
> I am going to ask two very silly questions, if any one can kindly tell me why this structure is taken?
>
> classifier.pseudocode(depth=4)
>
> from nltk.corpus import brown

Not sure what your question means. The first one is a keyword argument:
http://docs.python.org/tutorial/controlflow.html#keyword-arguments

The second is an import statement:
http://docs.python.org/tutorial/modules.html

That should get you started!

ChrisA



More information about the Python-list mailing list