반응형
[Python] 파이썬 현재 경로(디렉토리) getcwd() 쓰세요.
구문
import os
print( os.getcwd() )
설명
getcwd()는 현재 디렉토리를 문자열로 반환하는 함수입니다.
참조
파이썬 도큐먼트
https://docs.python.org/3.11/library/os.html?highlight=getcwd#os.getcwd
os.getcwd()
Return a string representing the current working directory.
반응형
'Programming Language > Python' 카테고리의 다른 글
[Python] datetime.timedelta 클래스 기초 (0) | 2023.02.10 |
---|---|
[Python] 파일/폴더 경로 존재 유무 확인하는 함수 (0) | 2023.02.09 |
[Python] 파이썬 경로 결합하기 join() (0) | 2023.02.09 |
[Python] 경로 구분자(\) 출력 시 sep 사용하세요 (0) | 2023.02.08 |
[Python] 배열(list)속 요소 중복을 제거 하는 방법 2가지 (0) | 2023.01.20 |