About viewing the save file
Title
Question
Hello, May I know how to view the plot_script.py file which will be after saving by using the command %save plot_script.py in windows version.
Python-3.4.3 Additional-features-of-IPython 05-06 min 30-40 sec
Answers:
There are multiple ways for you to view the contents of the file;
1) Open the file by using the system file browser, to know where the file was saved, the file is usually saved in the current working directory that is active while using the IPYTHON shell, you can see which is the current working directory by typing %pwd in the IPYTHON shell
2) You can use %cat filename (in linux) or !type filename commands to view contents of the file
Login to add comment