python path处理
程序员文章站
2022-05-10 09:10:42
...
Python 3.6.9 |Anaconda, Inc.| (default, Jul 30 2019, 14:00:49) [MSC v.1915 64 bi
t (AMD64)]
Type 'copyright', 'credits' or 'license' for more information
IPython 7.8.0 -- An enhanced Interactive Python. Type '?' for help.
In [1]: import os
In [2]: os.getcwd() # 获取当前工作目录路径
Out[2]: 'C:\\Program Files\\Git'
In [3]: os.path.abspath('.') # 获取当前工作目录路径
Out[3]: 'C:\\Program Files\\Git'
In [4]: os.path.abspath('test.txt') # 获取当前目录文件下的绝对路径
Out[4]: 'C:\\Program Files\\Git\\test.txt'
In [5]: os.path.abspath('..') # 获取当前工作目录路径的父级目录
Out[5]: 'C:\\Program Files'
In [6]: os.path.abspath(os.curdir) # 获取当前工作目录路径
Out[6]: 'C:\\Program Files\\Git'
下一篇: python path包的使用详解
推荐阅读
-
使用tesserocr.file_to_text("path")报错Failed to init API, possibly an invalid tessdata path: C:\\
-
php中 预处理与事务同时使用
-
Python+OpenCV:摄像机标定(Camera Calibration)
-
UVa 10382喷水装置(降维处理后,再贪心)
-
python实现博客文章爬虫示例
-
php处理post的数组
-
PHP 事务处理数据实现代码_PHP
-
python定时采集摄像头图像上传ftp服务器功能实现
-
解决Python中list里的中文输出到html模板里的问题
-
Python图像拼接之自定义生成棋盘格