컴퓨터/Python
python 명령어 메모
풍경소리^^
2019. 5. 6. 14:10
현재 디렉토리
import os
print(os.getcwd())
---
파일 rename
import os
os.rename('수정전.txt','수정후.txt')
---