“Obtenga el directorio actual 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

Obtener camino al directorio actual Python

import os
os.path.abspath(os.getcwd())
A

Obtén Diroctary en Python

import os
cwd = os.getcwd()
print(cwd)
Jealous Jackal

Directorio de trabajo Python

import os
cwd = os.getcwd()
Happy Hawk

Obtenga el directorio actual Python

import os
current_working_directory = os.getcwd()
print(current_working_directory) # should print the cwd

""" Bonus: If you want to change cwd, without moving file,
use the following method"""
os.chdir("path/to/directory")
Psych4_3.8.3

Respuestas similares a “Obtenga el directorio actual Python”

Preguntas similares a “Obtenga el directorio actual Python”

Más respuestas relacionadas con “Obtenga el directorio actual Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código