“Dapatkan Python direktori saat ini” Kode Jawaban

Dapatkan WD di Python

import os

path = os.getcwd()

print(path)
# /Users/mbp/Documents/my-project/python-snippets/notebook

print(type(path))
# <class 'str'>
Happy Hawk

Python Dapatkan Direktori Saat Ini

import os

print(os.getcwd())
Busy Bat

Dapatkan jalur ke Python direktori saat ini

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

Dapatkan Diroctary di Python

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

Python Direktori Bekerja

import os
cwd = os.getcwd()
Happy Hawk

Dapatkan Python direktori saat ini

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

Jawaban yang mirip dengan “Dapatkan Python direktori saat ini”

Pertanyaan yang mirip dengan “Dapatkan Python direktori saat ini”

Lebih banyak jawaban terkait untuk “Dapatkan Python direktori saat ini” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya