Visual Studio Code에서 외부 터미널(윈도우에선 명령 프롬프트)에서 파이썬 코드를 실행하는 방법을 다룹니다.2024. 8. 11 최초작성1. 테스트하기 위해 폴더를 생성후, 파이썬 소스코드를 하나 작성했습니다. 디버그 아이콘을 클릭합니다. 2. create a launch.json file을 클릭합니다. 3. Python Debugger를 클릭합니다. 4. Python File을 클릭합니다. 5. 다음 내용으로 launch.json 파일을 대체합니다. { // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For mo..
윈도우의 명령 프롬프트에서 하위 디렉토리 포함하여 디렉토리 목록을 출력하는 방법입니다. 2021. 10. 27 - 최초작성 현재 위치의 하위 디렉토리 목록을 출력해주는 명령어입니다. dir /A:D /B /S 실행시켜보면 현재 디렉토리 목록을 출력해주고 나서 각각의 디렉토리의 하위 디렉토리를 출력해주는 것을 볼 수 있습니다. C:\Users\webnautes\Test>dir /A:D /B /S C:\Users\webnautes\Test\a C:\Users\webnautes\Test\b C:\Users\webnautes\Test\c C:\Users\webnautes\Test\a\1 C:\Users\webnautes\Test\a\2 C:\Users\webnautes\Test\a\3 C:\Users\webna..