如何在Python中获取当前的工作目录?

在Python中获取当前的工作目录,有一个库函数getcwd() 在os模块中。

getcwd() 函数不接受任何参数,并以字符串形式返回当前工作目录的路径,即其返回类型为<class str>。

语法:

import os
# 函数调用
os. getcwd()

Python代码获取当前工作目录

# Python代码获取 
# 当前工作目录

# 导入模块
import os

# 获取当前路径
current_path = os.getcwd()
print("Current working directory is:", current_path)

#打印getcwd()函数的类型
print("Type of \'getcwd()\' function is:", type(os.getcwd()))

输出结果

Current working directory is: /home/runner/FrenchBrightDaemon
Type of 'getcwd()' function is: <class 'str'>