xxxxxxxxxx
import zipfile
for file in os.listdir():
if file.endswith(".zip"):
with zipfile.ZipFile(file, "r") as zip_file:
zip_file.extractall()
os.remove(file) # This will delete the file after unzipping, comment or remove