import zipfile from pathlib import Path p = Path('.') for f in p.glob('*.zip'): with zipfile.ZipFile(f, 'r') as archive: ...
確定! 回上一頁