📜  如何在os python代码示例中转到上一个目录

📅  最后修改于: 2022-03-11 14:45:17.419000             🧑  作者: Mango

代码示例1
print(os. getcwd())
path_parent = os. path. dirname(os. getcwd())
os. chdir(path_parent)
print(os. getcwd())