“Извлечение каталога Python” Ответ

Python OS Get Dir Path

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

getcwd() # Get the current working directory
Panicky Pig

Извлечение каталога Python

import zipfile
inpath = MyDirPath
outpath = inpath.replace(".zip", "") # Remove zip extension so that outpath does not have .zip
        with zipfile.ZipFile(inpath, 'r') as z:
            z.extractall(outpath) # Extracts
AcaiBerii

Ответы похожие на “Извлечение каталога Python”

Вопросы похожие на “Извлечение каталога Python”

Больше похожих ответов на “Извлечение каталога Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования