“relativer Weg Python” Code-Antworten

Python Öffnen Sie die Datei im Vergleich zum Modul

import os

TEST_FILENAME = os.path.join(os.path.dirname(__file__), 'test.txt')
Good Goshawk

Python Relative Path

import os
dirname = os.path.dirname(__file__)
filename = os.path.join(dirname, 'relative/path/to/file/you/want')
Thoughtless Tapir

relativer Weg Python

import sys,os
sys.path.append(os.path.realpath('..'))
Clear Cockroach

Ähnliche Antworten wie “relativer Weg Python”

Fragen ähnlich wie “relativer Weg Python”

Weitere verwandte Antworten zu “relativer Weg Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen