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

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

Obtenga el directorio de trabajo Python

import os
os.getcwd()
Outrageous Opossum

Obtenga el directorio de trabajo actual Python

# print current working directory in python
import os
cwd = os.getcwd()
print(cwd)
visualscrapper

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 Python”

Preguntas similares a “Directorio de trabajo Python”

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

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código