python 当前路径
在Python中,可以使用os模块的getcwd()函数来获取当前路径。示例代码如下:
import os
current_path = os.getcwd()
print("当前路径为:", current_path)
运行结果类似于:
当前路径为: C:\Users\username\Documents
请注意,当前路径是指运行Python脚本时所在的路径。
原文地址: https://www.cveoy.top/t/topic/jgLx 著作权归作者所有。请勿转载和采集!