“CWD 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

CWD 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

Ähnliche Antworten wie “CWD Python”

Fragen ähnlich wie “CWD Python”

Weitere verwandte Antworten zu “CWD Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen