본문 바로가기

Python_Beginer/Study

Python Basic

반응형

1. Python Setup Ver 확인

1-1. Windows(명령 프롬프트)

python --version

1-2. Mac(터미널)

python3 --version


2. Python Site

2-1. Python 공식 사이트 : https://www.python.org/

2-2. Python Code 확인 : http://pythontutor.com/


3. Python Setup Option

3-1. Install launcher for all users / Add Python 3.7 to PATH


4. Python Run

4-1. Windows(명령 프롬프트)

python

4-2. MAC(터미널)

python3


5. Python extension

.py


6. Python Code Run

6-1. Windows(명령 프롬프트)

python 파이썬파일명.py

6-2. MAC(터미널

python3 파이썬파일명.py


7. IDE(Integrated Development Environment)

7-1. PyCharm : https://www.jetbrains.com/pycharm

7-2. Atom : https://atom.io

7-3. Braket : https://bracket.io

7-4. Visual Studio Code : https://code.visualstudio.com

7-5. Notepad++ : https://notepad-plus-plus.org

반응형