Continuation of Jupyter's Tips 4 --Qiita
--Usage 1 % precision
: Show default settings
--Usage 2 % precision 3
: Set to display 3 digits after the decimal point
--Usage 3 % precision% 08.3f
: 3 digits after the decimal point, 8 digits in total, set to fill the beginning with 0
Register c: \ temp as a workingdir (any name) directory
jupyter
%bookmark workingdir c:\temp
Registered list display
jupyter
%bookmark -l
>>>
Current bookmarks:
workingdir -> c:\temp
Current directory display
jupyter
%pwd
>>>
'C:\\Users\\tsutomu\\Documents'
Move to the registered directory
jupyter
%cd workingdir
>>>
(bookmark:workingdir) -> c:\temp
c:\temp
Return to the original directory
jupyter
%cd -
>>>
C:\Users\tsutomu\Documents
Bookmark deletion
jupyter
%bookmark -d workingdir
Delete all bookmarks
jupyter
%bookmark -r
Built-in magic commands — IPython 3.2.1 documentation
that's all
Recommended Posts