“Holen Sie sich in Python Diroctary” 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 in Python Diroctary

import os
cwd = os.getcwd()
print(cwd)
Jealous Jackal

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

Ähnliche Antworten wie “Holen Sie sich in Python Diroctary”

Fragen ähnlich wie “Holen Sie sich in Python Diroctary”

Weitere verwandte Antworten zu “Holen Sie sich in Python Diroctary” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen