开发者

Python 获取当前路径3种方法

1、os.path 方法

# -*- coding: utf-8 -*-
# !/usr/bin/python

import os
impor编程客栈t sys

current_directory = os.path.dirname(os.path.abspath(__file__))

print(current_directory)

输出:

Python 获取当前路径3种方法

2、os.path.abspath 方法

开发者_开发教程# -*- coding: utf-8 -*-
# !/usr/bin/python

import os
import sys

root_path = os.UswFSpath.abspath(ojavascriptsUswFS.path.dirname(current_directorphpy) + os.path.sep + ".")
sys.path.append(root_path)

print(sys.path[0])

输出:

Python 获取当前路径3种方法

3、os.getcwd 方法

currentPath = os.getcwd().replace('\\','/')    # 获取当前路径
print(currentPath)

输出:

Python 获取当前路径3种方法

到此这篇关于Python 获取当前路径3种方法的文章就介绍到这了,更多相关Python 获取当前路径内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新开发

开发排行榜