python:实现文件句柄二进制读取 import pickle def binary_read(): with open("studrec.dat") as b: stud = pickle.load(b)