“Python bekommen Skriptpfad” Code-Antworten

Python bekommen Skriptpfad

os.getcwd()
Nasty Nightingale

Python, wie man ein Verzeichnis des Skripts bekommt

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

Holen Sie sich den Python -Skriptpfad

from pathlib import Path

current_file: Path = Path(__file__).resolve()
Calm Crocodile

Holen Sie sich den Python -Skriptpfad

current_path: Path = Path(__file__).parent.resolve()
Calm Crocodile

Python bekommen Skriptpfad

import os

file_path = os.path.realpath(__file__)
Real Raccoon

Ähnliche Antworten wie “Python bekommen Skriptpfad”

Fragen ähnlich wie “Python bekommen Skriptpfad”

Weitere verwandte Antworten zu “Python bekommen Skriptpfad” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen