“Obtenez le nom de fichier actuel Python” Réponses codées

Python Obtenez l'emplacement actuel du fichier

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

python obtenir le nom du script

# Option 1: Works for Python 3.4 +
from pathlib import Path
Path(__file__).name		# ScriptName.py
Path(__file__).stem		# ScriptName

# Option 2: use `os` library 
import os
os.path.basename(__file__)							# ScriptName.py
os.path.splitext(os.path.basename(__file__))[0]		# ScriptName
Thoughtless Tapir

Obtenez le nom de fichier actuel Python

import os
os.path.basename(__file__)
Blue Barracuda

Nom python du fichier actuel

from pathlib import Path
print(Path(__file__).stem) #myfile
print(Path(__file__).name) #myfile.py
Annoying Armadillo

Obtenez le nom d'auto-fichier en python

import os

os.path.basename(__file__)
Busy Booby

Obtenez le nom d'un script actuel dans Python

Use __file__. If you want to omit the directory part (which might be present), you can use os.path.basename(__file__)
Daneel Brookes

Réponses similaires à “Obtenez le nom de fichier actuel Python”

Questions similaires à “Obtenez le nom de fichier actuel Python”

Plus de réponses similaires à “Obtenez le nom de fichier actuel Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code