New paste Repaste Download
import zipfile
from google.colab import drive
drive.mount('/content/drive')
zip_file_path = '/content/drive/MyDrive/Dataset.zip'
extract_path = '/content/extracted_data'
try:
  with zipfile.ZipFile(zip_file_path, 'r') as zip_ref:
    zip_ref.extractall(extract_path)
  print(f"Successfully extracted data to {extract_path}")
except Exception as e:
  print(f"An unexpected error occurred: {e}")
Filename: None. Size: 409b. View raw, , hex, or download this file.

This paste expires on 2025-04-08 04:49:06.270157. Pasted through web.