“Python setzte CWD auf Dateispeicherort” Code-Antworten

Python setzte CWD auf Dateispeicherort

import os

abspath = os.path.abspath(__file__)
dname = os.path.dirname(abspath)
os.chdir(dname)
Comfortable Cockroach

Ändern Sie das Verzeichnis im Python -Skript

os.chdir(os.path.dirname(__file__))
Splendid Sandpiper

Python setzte CWD auf das Skriptverzeichnis

abspath = os.path.abspath(__file__)
dname = os.path.dirname(abspath)
os.chdir(dname)
Comfortable Cockroach

Ähnliche Antworten wie “Python setzte CWD auf Dateispeicherort”

Fragen ähnlich wie “Python setzte CWD auf Dateispeicherort”

Weitere verwandte Antworten zu “Python setzte CWD auf Dateispeicherort” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen