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

Python obtiene el directorio actual

import os

print(os.getcwd())
Busy Bat

Directorio de trabajo Python

import os
cwd = os.getcwd()
Happy Hawk

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

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

Respuestas similares a “Obtenga el directorio de trabajo Python”

Preguntas similares a “Obtenga el directorio de trabajo Python”

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

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código