【python初级】os.getcwd返回当前工作目录
背景
os.getcwd() 方法用于返回当前工作目录。
import os
help(os.getcwd)
# 运行如下:
'''
Help on built-in function getcwd in module nt:
getcwd()
Return a unicode string representing the current working directory.
返回一个 unicode 字符串,其代表当前工作目录。
'''
示例
演示os.getcwd()的使用:
# jn10010537
import os
dir=os.getcwd()
print(">>>当前工作目录dir:",dir)
运行如下: