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

Holen Sie sich den Pfad zum aktuellen Verzeichnis Python

import os
os.path.abspath(os.getcwd())
A

Holen Sie sich in Python Diroctary

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

Arbeitsverzeichnis Python

import os
cwd = os.getcwd()
Happy Hawk

Holen Sie sich das aktuelle Verzeichnis Python

import os
current_working_directory = os.getcwd()
print(current_working_directory) # should print the cwd

""" Bonus: If you want to change cwd, without moving file,
use the following method"""
os.chdir("path/to/directory")
Psych4_3.8.3

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

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

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

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen