Python 获取当前路径的几种方法
绝对路径
1、os.path 方法
# -*- coding: utf-8 -*-
# !/usr/bin/python
import os
import sys
current_directory = os.path.dirname(os.path.abspath(__file__))
print(current_directory)
输出:
2、os.path.abspath 方法
# -*- coding: utf-8 -*-
# !/usr/bin/python
import os
import sys
root_path = os.path.abspath(os.path.dirname(current_directory) + os.path.sep + ".")
sys.path.append(root_path)
print(sys.path[0])
输出:
3、os.getcwd 方法
currentPath = os.getcwd().replace('\\','/') # 获取当前路径
print(currentPath)
输出:
版权声明:本文为hongzhen91原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。