[Tutor] basic IDLE and other difficulties

Justin Sheehy dworkin@ccs.neu.edu
24 Feb 2000 10:55:49 -0500


"cfking@cybermail.net" <cfking@cybermail.net> writes:

> --> how do I say "change directory" in Python, anyway? 

os.chdir(path)

> --> Is there any such thing as an "unimport()" or "forget()" anyway?

Net really, but depending on what you want, 'del <modulename>' may help.

-Justin