What's the working directory when using IDLE?
问题 So, I'm learning Python and would like to create a simple script to download a file from the internet and then write it to a file. However, I am using IDLE and have no idea what the working directory is in IDLE or how to change it. How can I do file system stuff in IDLE if I don't know the working directory or how to change it? 回答1: You can easily check that yourself using os.getcwd: >>> import os >>> os.getcwd() 'C:\\Program Files\\Python33' That’s on my Windows machine, so it’s probably the