728x90
vscode(Visual Studio Code)에서 Python 개발환경 설정
vscode 명령 표시 및 실행
- MAC : command + shift + p
- WINDOWS : ctrl + shift + p
명령 표시 및 실행 창에서 "Python: Select Interpreter" 검색
인터프리터 선택
- /opt/homebrew/bin/python3 선택
test1.py 코딩
# -*- coding: utf-8 -*-
#!/usr/bin/env python
import os
import requests
url = "https://www.sangchul.kr"
response = requests.get(url)
print("status code :", response.status_code)
python 실행(Ctrl + F5)
참고URL
- 온라인 파이썬 컴파일러(Python Online Compiler) : https://www.programiz.com/python-programming/online-compiler/
728x90
'기타' 카테고리의 다른 글
[기타] dns tools (0) | 2022.11.28 |
---|---|
[스크립트] python 예약어 (0) | 2022.11.24 |
[기타] 티스토리 블로그 도메인을 구매한 도메인으로 리다이렉트(redirect) 설정 (0) | 2022.11.09 |
[draft] 티스토리에 클라우드플레어를 설정하고 연동하기 (0) | 2022.11.09 |
[보안] OpenSSL 취약점 보안 업데이트 권고 (0) | 2022.11.02 |