“Python Get Dir” 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

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

Python Get Dir

import os 
#full path
dir_path = os.path.dirname(os.path.realpath(__file__))

#current dir
cwd = os.getcwd()
mrjakobdk

Obtenez le répertoire de travail actuel Python

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

Python comment obtenir le répertoire du script

import os
print(os.path.abspath(''))
Spotless Sloth

Réponses similaires à “Python Get Dir”

Questions similaires à “Python Get Dir”

Plus de réponses similaires à “Python Get Dir” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code