File size: 144 Bytes
60cf881 | 1 2 3 4 5 6 | import pickle
from pathlib import Path
p=Path(__file__).with_name('evil_final.pkl')
with open(p,'rb') as f: pickle.load(f)
print('loaded')
|
60cf881 | 1 2 3 4 5 6 | import pickle
from pathlib import Path
p=Path(__file__).with_name('evil_final.pkl')
with open(p,'rb') as f: pickle.load(f)
print('loaded')
|