“Diretório de trabalho atual do Python” Respostas de código

Obtenha WD em Python

import os

path = os.getcwd()

print(path)
# /Users/mbp/Documents/my-project/python-snippets/notebook

print(type(path))
# <class 'str'>
Happy Hawk

python obtenha diretório atual

import os

print(os.getcwd())
Busy Bat

Diretório de trabalho Python

import os
cwd = os.getcwd()
Happy Hawk

Obtenha o diretório do arquivo python

import os 
dir_path = os.path.dirname(os.path.realpath(__file__))
Agreeable Ape

OS obtém diretório atual

import os

#Get Current working Directory
currentDirectory = os.getcwd()

#Change the Current working Directory
os.chdir('/home/varun')
Agreeable Alpaca

Diretório de trabalho atual do Python

# If by "current working directory" you mean 
# the directory in which is saved the script in execution, then:
import os
cwd = os.path.dirname(os.path.realpath(__file__))
print(cwd)
Cheerful Chipmunk

Respostas semelhantes a “Diretório de trabalho atual do Python”

Perguntas semelhantes a “Diretório de trabalho atual do Python”

Mais respostas relacionadas para “Diretório de trabalho atual do Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código