first post: new to pythong. some questions.

Simon Brunning simon at brunningonline.net
Thu Dec 8 05:21:00 EST 2005


On 12/8/05, shawn a <boris317 at gmail.com> wrote:
> Hello. Im brand new to this list and to python.  Ive recently started
> reading about it
>   and am now in the tinkering stage.

Welcome to Python!

>  I have a script im working on that i
> need some
>  asistance debugging. Its super small and should be a snap for you gurus =)
>
>  I have 2 files in a dir off my home dir:
>  mkoneurl.py
>  make_ou_class.py
>
>  --mkoneurl.py--
>  #! /usr/bin/env python
>
>  import make_ou_class
>
>  run = makeoneurl()

You need:

run = make_ou_class.makeoneurl()

See <http://docs.python.org/tut/node8.html> for why.

(BTW, you would probably have got more of a response with a better
subject line. <http://www.catb.org/~esr/faqs/smart-questions.html> is
worth a read.)

--
Cheers,
Simon B,
simon at brunningonline.net,
http://www.brunningonline.net/simon/blog/



More information about the Python-list mailing list