아미(아름다운미소)

주피터 노트북(jupyter notebook) 단축키 본문

랭귀지/PYTHON

주피터 노트북(jupyter notebook) 단축키

유키공 2019. 1. 27. 11:00

주피터 노트북(jupyter notebook) 

단축키명령모드와 편집모드, 중요 키보드 단축키, 팁

주피터 노트북은 아무 때나 Esc 키를 누르면 명령모드(command mode)로 들어가고 Enter 키나 셀을 클릭하면 편집모드(Edit mode)로 들어가게 됩니다.

자주 사용하는 키보드 단축키는 다음과 같습니다.

  • 공통
    • Shift + Enter : run cell, select below
    • Ctrl + Enter : run selected cells
    • Esc : Enter command mode
    • Enter : Enter edit mode
    •  + Shift + P : Show command palette
  • 명령모드 (grey cell border with a blue left margin)
    • Y / M : Change cell type to code / markdown
    • Shift + / : Extend cell selections
    • Shift + M : Merge selected cells, or merge the current cell with the one below
    • D,D : delete selected cells
    • C / X / V : copy / cut / paste below
    • A / B : add cell above / below
  • 편집모드 (green cell border)
    • Tab : Code completion
    • Shift + Tab : Python tooltip
    • Shift + Tab (twice) : Detailed Python tooltip


Comments