常用函数
- id()
- dir()
- help()
os.linesep 系统换行符
os.getcwd
当前工作目录
# 获取当前文件路径
filePath = os.path.dirname(os.path.abspath(sys.argv[0]))
# 获取当前工作目录
pwd = os.getcwd()
Posted xiangyang_li
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 常用函数变量相关的知识,希望对你有一定的参考价值。
os.linesep 系统换行符
os.getcwd
当前工作目录# 获取当前文件路径
filePath = os.path.dirname(os.path.abspath(sys.argv[0]))
# 获取当前工作目录
pwd = os.getcwd()
以上是关于python 常用函数变量的主要内容,如果未能解决你的问题,请参考以下文章