Python | os.getcwd 函数
最近更新时间 2020-12-04 10:13:36
os.getcwd 函数返回当前工作目录,该函数无输入参数。
注意区分当前工作目录和 .py 脚本目录,后者可以通过 __file__ 或 sys.argv[0] 获取。
函数定义
os.getcwd()
参数
- check无 - 无输入参数
返回值
- checkstring - 返回当前工作目录。
示例1: - 使用 os.getcwd() 函数返回当前工作目录。
# coding=utf-8
# Python3 代码
# 使用 os.getcwd() 返回当前工作目录(CWD)
# 引入 os 库
import os
# 获取当前工作目录
print('当前工作目录:'+os.getcwd())
当前工作目录:/root