“Arbeitsverzeichnis Python” Code-Antworten

Holen Sie sich WD in Python

import os

path = os.getcwd()

print(path)
# /Users/mbp/Documents/my-project/python-snippets/notebook

print(type(path))
# <class 'str'>
Happy Hawk

Arbeitsverzeichnis Python

import os
cwd = os.getcwd()
Happy Hawk

Holen Sie sich eine Datei -Python -Verzeichnis

import os 
dir_path = os.path.dirname(os.path.realpath(__file__))
Agreeable Ape

Holen Sie sich das Arbeitsverzeichnis Python

import os
os.getcwd()
Outrageous Opossum

Holen Sie sich das aktuelle Arbeitsverzeichnis Python

# print current working directory in python
import os
cwd = os.getcwd()
print(cwd)
visualscrapper

Python Current Working Directory

# If by "current working directory" you mean 
# the directory in which is saved the script in execution, then:
import os
cwd = os.path.dirname(os.path.realpath(__file__))
print(cwd)
Cheerful Chipmunk

Ähnliche Antworten wie “Arbeitsverzeichnis Python”

Fragen ähnlich wie “Arbeitsverzeichnis Python”

Weitere verwandte Antworten zu “Arbeitsverzeichnis Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen