“Holen Sie sich das aktuelle 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

Python bekommt aktuelles Verzeichnis

import os

print(os.getcwd())
Busy Bat

Arbeitsverzeichnis Python

import os
cwd = os.getcwd()
Happy Hawk

OS erhalten Sie aktuelles Verzeichnis

import os

#Get Current working Directory
currentDirectory = os.getcwd()

#Change the Current working Directory
os.chdir('/home/varun')
Agreeable Alpaca

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

Ähnliche Antworten wie “Holen Sie sich das aktuelle Arbeitsverzeichnis Python”

Fragen ähnlich wie “Holen Sie sich das aktuelle Arbeitsverzeichnis Python”

Weitere verwandte Antworten zu “Holen Sie sich das aktuelle Arbeitsverzeichnis Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen