change_dir.py from pathlib import Path from os import chdir path = Path('..') print(f'1 현재 작업 디렉토리: {path.cwd()}') chdir(path) ...
確定! 回上一頁