Fetching file from the system
Title
Question
Does python fetches files from a specific location in the system or from anywhere?
Reframing the question: does the file needs to be present in the working directory for fetching the details
Python-3.4.3 Loading-Data-From-Files 01-02 min 20-30 sec
Answers:
Yes.
The file will be saved in the current working directory which your interpreter is pointing to. You can find which directory your interpreter is pointing to by using the command %pwd You can also change directories by using the command %cd /new/path/directory And then save files
Login to add comment