“Python bekommt Dir” 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

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

Python bekommt Dir

import os 
#full path
dir_path = os.path.dirname(os.path.realpath(__file__))

#current dir
cwd = os.getcwd()
mrjakobdk

Holen Sie sich das aktuelle Arbeitsverzeichnis Python

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

Python, wie man ein Verzeichnis des Skripts bekommt

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

Ähnliche Antworten wie “Python bekommt Dir”

Fragen ähnlich wie “Python bekommt Dir”

Weitere verwandte Antworten zu “Python bekommt Dir” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen