File size: 146 Bytes
ccd7c01 | 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',p)
|
ccd7c01 | 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',p)
|