在Python中,获取当前目录通常使用os
模块中的os.getcwd()
函数。这个函数会返回当前工作目录的路径。如果你需要将路径中的反斜杠\
替换为正斜杠/
,可以使用str.replace()
方法,如下所示:
import os
current_directory = os.getcwd()
current_directory = current_directory.replace('\\', '/')
print(current_directory)
这样就可以得到一个使用正斜杠分隔的路径字符串。