File size: 146 Bytes
6e1733c
 
 
 
 
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)