“Änderung des Arbeitsverzeichnisses 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 Änderung des Arbeitsverzeichnisses zum Dateiverzeichnis

import os

abspath = os.path.abspath(__file__)
dname = os.path.dirname(abspath)
os.chdir(dname)
Comfortable Cockroach

Ändern Sie das aktuelle Arbeitsverzeichnis in Python

import os
cdir = os.getcwd() # it will return current working directory
print("Previous_dir",cdir)
# Previous_dir C:\Users\..\Desktop\python
os.chdir('C:/Users/../Desktop/desire_folder') #chdir used for change direcotry
print("Current_dir",cdir)
# Current_dir C:\Users\..\Desktop\python\teamspirit
visualscrapper

setwd python

os.chdir("/home/varun/temp")
Lazy Lion

Verzeichnis in Python OS ändern

import os

path = "C:\Users\Your\Directory"

os.chdir(path)
Joyous Jellyfish

Änderung des Arbeitsverzeichnisses Python

import os
os.chdir(new_working_directory)
Poised Peccary

Ähnliche Antworten wie “Änderung des Arbeitsverzeichnisses Python”

Fragen ähnlich wie “Änderung des Arbeitsverzeichnisses Python”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen