“Plik Phil Prepurant Directory Python” Kod odpowiedzi

Uzyskaj ścieżkę do obecnego Pythona z katalogu

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

Plik Phil Prepurant Directory Python

#Python 3

#For the directory of the script being run:

import pathlib
pathlib.Path(__file__).parent.resolve()

#For the current working directory:

import pathlib
pathlib.Path().resolve()

#Python 2 and 3

#For the directory of the script being run:

import os
os.path.dirname(os.path.abspath(__file__))

#If you mean the current working directory:

import os
os.path.abspath(os.getcwd())
Sore Stork

Python Zdobądź ścieżkę bieżącego pliku

import pathlib
pathlib.Path(__file__).parent.absolute()
Pleasant Panda

Python OS Get Dir Path

from os import getcwd # only import "getcwd" from os

getcwd() # Get the current working directory
Panicky Pig

Odpowiedzi podobne do “Plik Phil Prepurant Directory Python”

Pytania podobne do “Plik Phil Prepurant Directory Python”

Więcej pokrewnych odpowiedzi na “Plik Phil Prepurant Directory Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu