Appendix B. More on the IPython System

In Chapter 2 we looked at the basics of using the IPython shell and Jupyter notebook. In this appendix, we explore some deeper functionality in the IPython system that can either be used from the console or within Jupyter.

B.1 Terminal Keyboard Shortcuts

IPython has many keyboard shortcuts for navigating the prompt (which will be familiar to users of the Emacs text editor or the Unix bash shell) and interacting with the shell’s command history. Table B-1 summarizes some of the most commonly used shortcuts. See Figure B-1 for an illustration of a few of these, such as cursor movement.

Table B-1. Standard IPython keyboard shortcuts
Keyboard shortcutDescription
Ctrl-P or up-arrowSearch backward in command history for commands starting with currently entered text
Ctrl-N or down-arrowSearch forward in command history for commands starting with currently entered text
Ctrl-RReadline-style reverse history search (partial matching)
Ctrl-Shift-VPaste text from clipboard
Ctrl-CInterrupt currently executing code
Ctrl-AMove cursor to beginning of line
Ctrl-EMove cursor to end of line
Ctrl-KDelete text from cursor until end of line
Ctrl-UDiscard all text on current line
Ctrl-FMove cursor forward one character
Ctrl-BMove cursor back one character
Ctrl-LClear screen
Figure B-1. Illustration of some keyboard shortcuts in the IPython shell

Note that Jupyter notebooks have a largely ...

Get Python for Data Analysis, 3rd Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.