우노
[Python] os 모듈 정리 본문
모듈 호출
import os
폴더 생성
os.mkdir("path")
파일명 변경
# 파일이 현재 디렉토리에 있을 경우
os.rename(file,newfile)
# 파일이 다른 디렉토리에 있을 경우
os.rename('./dir/'+file, './dir/'+newfile)
'Language > Python' 카테고리의 다른 글
[Python] Custom Sparse Matrix 생성 (0) | 2020.11.17 |
---|---|
[Python] random 모듈 정리 (0) | 2020.11.17 |
[Python] 코드 실행시간 측정 (0) | 2020.11.15 |
[Python] scipy.sparse.random Matrix 생성 방법 (0) | 2020.11.13 |
[Python] Matplotlib에서 W와 b 값을 사용하여 직선 그리기 (0) | 2020.11.05 |
Comments