Jupyter) ClearOutput 방법 소개(command, in cell)
목차 quick hack Change the cell type to raw then back to code: Esc R Y will discard the output. 특정 셀에서 초기화(in cell) from IPython.display import clear_output clear_output(wait=True) Jupyer Lab 사용자는 아래와 같이 추가 { "shortcuts": [ { "command": "notebook:hide-cell-outputs", "keys": [ "H" ], "selector": ".jp-Notebook:focus" }, { "command": "notebook:show-cell-outputs", "keys": [ "Shift H" ], "selector": "...
2021.07.23