On 26 Nov 2005 03:19:55 -0800
"[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:

> from os import *
> print "Working path: %s" % os.getcwd();
> 
> Just wondering how you would do that .. in theory, if you get what I
> mean?
> I get
> NameError: name 'os' is not defined
> currently, which I don't know how to fix.. anyone?
> 

your using the getcwd from os.  You need to change the 'from os import
*'  to import os


i.e.

import os
print "Working path: %s" % os.getcwd()


-- 
JLands
Slackware 9.1                    
Registered Linux User #290053
"If you were plowing a field, which would you rather use? Two strong
oxen or 1024 chickens?"
    - Seymour Cray (1925-1996), father of supercomputing
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to