기본 콘텐츠로 건너뛰기

Jupyter Notebook, Windows, keyboard shortcut

h : keyboard shortcut
dd : 삭제
ctrl + enter : 그 행 실행
shift + enter : 그 행 실행 후 다음 행으로 이동
Kernel -> Restart & Run All : 실행 초기화하고 전체 열 위에서 부터 아래 순으로 실행
esc + y : Code 모드
    Code : Python
esc + m : Markdown 모드
    Markdown : HTML
space + tap  : 자동 완성
shift + tap : 설명
선택, c : 복사
선택, v : 붙여넣기

이 블로그의 인기 게시물

Grid 정렬

  .container { display : grid ; gap : 22px ; width : 1000px ; grid-template-columns : repeat ( auto-fit , 150px ); margin : auto ; justify-content : center ; } .container {      display : grid ; gap : 22px ; grid-template-columns : repeat ( auto-fit , minmax ( 250px , 1fr )); }

Python 변수

지역 변수 a 전역 변수 밖에서 선언한 변수를 사용할 때 앞에 global 을 붙여준다     global a