샤인의 IT (막 적는) 메모장

[Python] VSCode 설치 본문

Programming/Python

[Python] VSCode 설치

신샤인 2021. 3. 26. 12:11
반응형

Visual Studio Code(VSCode)

 

VSCode 설치

 

1.VSCode 홈페이지 들어가서 다운로드 한다.

https://code.visualstudio.com/download

 

Download Visual Studio Code - Mac, Linux, Windows

Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows. Download Visual Studio Code to experience a redefined code editor, optimized for building and debugging modern web and cloud applications.

code.visualstudio.com

 

2. 다운로드한 VSCode를 설치한다.

 

3. VSCode 실행 한 후, Extension에서 Python 검색해서 다운로드 한다.

 

 

VSCode를 이용하여 Hello World! 출력하기

 

1. VSCode 실행한 후에 오른쪽 하단 Add Folder 클릭하여 작업 폴더 만들기

(저는 Sinkaz_python이라는 폴더라고 만들었습니다. 꾸벅꾸벅)

 

 

 

 

2. File - New File을 눌러서 hello.py라고 저장하여 저장합시다.(**작업 폴더 안에 저장)

 

3. 코드를 입력하고 오른쪽 클릭 후 Run Python File in Terminal 클릭해서 확인

 

 

print("hello world!")

 

VSCode로 실행한 Hello world!

 

반응형

'Programming > Python' 카테고리의 다른 글

[Python] 문자열 관련 인덱싱 및 슬라이싱  (0) 2021.03.26
[Python] 연산자  (0) 2021.03.26
[Python] 입력과 출력  (0) 2021.03.26
[Python] Python 자료형  (0) 2021.03.26
[Python] 파이썬 설치  (0) 2021.03.26
Comments