编程语言
首页 > 编程语言> > 【python初级】os.getcwd()返回当前工作目录

【python初级】os.getcwd()返回当前工作目录

作者:互联网

【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)

运行如下:
在这里插入图片描述

标签:返回,python,getcwd,当前工作,os,目录,dir
来源: https://blog.csdn.net/jn10010537/article/details/122770354