“Python OS obtient un chemin” Réponses codées

Python Obtenez l'emplacement actuel du fichier

import os
os.path.dirname(os.path.abspath(__file__))
Proud Polecat

Obtenez le chemin du répertoire actuel Python

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

Python Obtenez le chemin du fichier actuel

import pathlib
pathlib.Path(__file__).parent.absolute()
Pleasant Panda

Python OS obtient un chemin

import pathlib
pathlib.Path().resolve()
Vast Vicuña

Python OS obtient un chemin DIR

from os import getcwd # only import "getcwd" from os

getcwd() # Get the current working directory
Panicky Pig

Obtenez le chemin d'un module dans Python

import inspect
inspect.getfile(<mdule name>)
Hurt Hamerkop

Réponses similaires à “Python OS obtient un chemin”

Questions similaires à “Python OS obtient un chemin”

Plus de réponses similaires à “Python OS obtient un chemin” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code