python os 模块
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python os 模块相关的知识,希望对你有一定的参考价值。
os模块提供了文件系统路径方面的功能
常见用法:
代码示例:
module_dir = os.path.dirname(__file__)
这段代码返回的是python 脚本所在的目录
代码示例:
module_dir = os.path.abspath(module_dir)
这句代码返回的是脚本的绝对路径
以上是关于python os 模块的主要内容,如果未能解决你的问题,请参考以下文章