import os
print(os.getcwd()) # 현재 작업 디렉터리를 출력
os.chdir("새로운_폴더") # 작업 디렉터리를 변경
os.mkdir("새로운_폴더") # 새로운 폴더 만들기
os.rmdir("새로운_폴더") # 빈 폴더 삭제
os.remove("파일_이름.txt") # 파일 삭제
os.rename("기존파일.txt", "새파일.txt") # 파일 이름 변경
print(os.listdir(".")) # 현재 디렉터리의 모든 파일과 폴더 출력
print(os.environ) # 모든 환경 변수 출력
print(os.environ.get("HOME")) # 특정 환경 변수 값 읽기
print(os.name) # 운영 체제 이름 출력 (e.g., 'posix', 'nt')
Windows
와 macOS/Linux
에서 테스트해보는 것이 좋다.3️⃣ 4️⃣ 5️⃣ 6️⃣ 7️⃣ 8️⃣ 9️⃣