File size: 144 Bytes
9889c08
 
 
 
 
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')