markdown os库python

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown os库python相关的知识,希望对你有一定的参考价值。

import os
#### change directory
os.chdir(path)

#### Get current working directory
os.getcwd()

#### To change working directory to one level upper
BASE_DIR = os.path.join( os.getcwd(), '..' )
os.chdir(BASE_DIR)

以上是关于markdown os库python的主要内容,如果未能解决你的问题,请参考以下文章

python标准库 —— os模块

python标准库之os库

Python 标准库-os

python库学习笔记(os模块)

Python常用标准库之os

Python常用标准库之os