================================ IPython Shell raccourcis clavier ================================ Publié pour la première fois le 03/01/2019 sur https://defkey.com/fr/ipython-raccourcis-clavier IPython Shell a 21 raccourcis et nous les avons énumérés ci-dessous. Navigation ---------- Ctrl + A Move cursor to the beginning of the line Ctrl + E Move cursor to the end of the line Ctrl + B Move cursor back one character Flèche gauche Move cursor back one character Ctrl + F Move cursor forward one character Flèche droite Move cursor forward one character Text entry ----------   In addition to Backspace, Ipython provides a few other shorcuts for deleting a portion of text. Retour Arrière Delete previous character in line Ctrl + D Delete next character in line Ctrl + K Cut text from cursor to end of line Ctrl + U Cut text from beginning of line to cursor Ctrl + Y Yank (e.g. paste) text that was previously cut Ctrl + T Transpose (e.g. switch) previous two characters Command history ---------------   Command history not only stores command in current session. Your entire command history is stored in a SQLite database in your IPython profile directory. Ctrl + P Access previous command in history Flèche vers le haut Access previous command in history Ctrl + N Access next command in history Flèche vers le bas Access next command in history Ctrl + R Reverse-search through command history Entrée Select the command Miscellaneous ------------- Ctrl + 1 Clear terminal screen Ctrl + C Interrupt current Python command   Ctrl + C will be particularly useful if you start a long running job by mistake. Ctrl + D Exit IPython session   Source: Github Dernière mise à jour (UTC): lundi 11 novembre 2019 Defkey © Tous les droits sont réservés.