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
"[EMAIL PROTECTED]" <[EMAIL PROTECTED]> writes:
> 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?
Either:
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?
--
http://mail.python.org/mailman/listinfo/python-list