자동
VSCode에서 코드 자동 정렬하는 법
방법 1 (수동) 오른쪽 상단 File -> Preferences -> Keyboard Shortcuts 클릭 검색 창에 format을 검색한다. format document에 표시되어있는 keybinding 단축기를 사용하면, vscode에서 자동으로 지원하는 python formatting을 사용할 수 있다. Shitf + Alt + F 단축키는 사람마다 다를 수 있다. 방법 2 (자동) 오른쪽 상단 File -> Preferences -> Settings 클릭 User > Text Editor > Formatting 클릭 Format On Paste, Format On Save, Format On Type 체크 Format On Paste : 코드를 붙여넣기 했을 때, 자동으로 코드를 정렬해준다. ..