OS 구분없이 경로 사용하는 방법
import os
cur_dir = os.path.abspath(__file__)
cur_dir = os.path.split(cur_dir)[0]
data=cur_dir
print(os.getcwd())
dirsep=data.split(os.path.sep)
print(dirsep)
print(os.path.join(*dirsep))
'놀아보자 > 파이썬기초' 카테고리의 다른 글
파일명 변경 (0) | 2021.11.23 |
---|---|
[PySide6] 콤보박스를 이용한 이미지 불러오기 (0) | 2021.11.17 |
PySide6 이미지 다루기 (0) | 2021.11.16 |
파이썬 입문 도서 2권 (0) | 2021.11.12 |
QT designer (0) | 2021.11.11 |