5 lines
98 B
Python
5 lines
98 B
Python
|
import sys
|
||
|
import pickle
|
||
|
with open(sys.argv[1], "rb") as file:
|
||
|
print(repr(pickle.load(file)))
|