“Répertoire de travail Python” Réponses codées

Obtenez WD dans Python

import os

path = os.getcwd()

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

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

Répertoire de travail Python

import os
cwd = os.getcwd()
Happy Hawk

Obtenez le répertoire de Fichier Python

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

Get Working Directory Python

import os
os.getcwd()
Outrageous Opossum

Obtenez le répertoire de travail actuel Python

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

Répertoire de travail actuel 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

Réponses similaires à “Répertoire de travail Python”

Questions similaires à “Répertoire de travail Python”

Plus de réponses similaires à “Répertoire de travail Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code