우노
[Python] Python 에서 Shell 명령어 실행하는 방법 본문
- Python 코드에서 Shell 명령어를 실행하고 싶다면,
- 두 가지 모듈(os, subprocess)을 사용해 수행할 수 있다.
os 모듈 사용
# 모듈 import
import os
# 쉘 명령어 실행
os.system("echo test")
'Language > Python' 카테고리의 다른 글
[Python] 정규표현식 (0) | 2021.01.11 |
---|---|
[Python] Pandas DataFrame 랜덤 행 추출 및 행 섞기 (0) | 2020.12.30 |
[Python] Numpy random 모듈 정리 (0) | 2020.12.03 |
[Python] Matplotlib Color 종류 (0) | 2020.12.01 |
[Python] file read 시 head 제거 (0) | 2020.11.30 |
Comments