“Directorio de trabajo actual de Python” Código de respuesta

Obtenga WD en Python

import os

path = os.getcwd()

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

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

Python obtiene el directorio actual

import os

print(os.getcwd())
Busy Bat

Directorio de trabajo Python

import os
cwd = os.getcwd()
Happy Hawk

Obtener directorio de archivo python

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

OS obtenga el directorio actual

import os

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

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

Directorio de trabajo actual de 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

Respuestas similares a “Directorio de trabajo actual de Python”

Preguntas similares a “Directorio de trabajo actual de Python”

Más respuestas relacionadas con “Directorio de trabajo actual de Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código