.pkl文件读取

import pickle

f = open('adjs_offset.pkl', 'rb')

content = pickle.load(f)

print(content) #content 就是原数据

你可能感兴趣的:(python)