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

2022/2/2 17:12:24

本文主要是介绍【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初级】os.getcwd()返回当前工作目录的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程