wasm-demo/demo/ermis-f/python_m/cur/0718

39 lines
1.3 KiB
Plaintext

From: tjreedy at udel.edu (Terry Reedy)
Date: 9 Apr 1999 02:59:32 GMT
Subject: Q: newbie win95 - python path navigation assignment strategies needed
References: <7eibtm$igb$1@news1.cableinet.co.uk>
Message-ID: <7ejqek$cuh$2@news.udel.edu>
Content-Length: 1029
X-UID: 718
In article <7eibtm$igb$1 at news1.cableinet.co.uk>, jasonic at nomadicsltd.com
says...
>I do not understand the relationships between modules, namespace, path and
>the Python shell. When I am in the python shell at the prompt I can
The main differences between batch and interactive mode are that the latter:
1. echoe the value of expressions;
2. requires a blank line to terminate blocks (if, while, for, def, class).
A module, once imported, is (or becomes) a namespace. Path is where to fine
the text for modules.
>But how and when do I need to change the working directory?
>I cannot seem to find a setcwd() command or similar.. Am I missing
>something?
Yes. For 'how', check contents of ntpath. For when, when you want to import
modules not on explicit paths in sys.pyth (so that they are in '.') or when
you want to open files for reading and writing by simple name without a path.
I'm not sure about some of other questions. Hope this helps. I also work on
Win95 and have few problems.
Terry J. Reedy