Skip to content
Snippets Groups Projects
Commit 0279c6ea authored by Sun Jin Kim's avatar Sun Jin Kim
Browse files

Add check_pickles.py

parent 43ff62e1
No related branches found
No related tags found
No related merge requests found
File deleted
import pickle
from pprint import pprint
with open('randomsearch_logs.pkl', 'rb') as file:
list = pickle.load(file)
pprint(list)
print(len(list))
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment