代码是:
import zlib;
s="witch which has which witches wrist watch";
z=zlib.compress(s);
print(len(s));
print(len(z));
print(s);
print(z,"\n");
a=zlib.decompress(z);
print(a);#here,in console sometimes will stop at here
print(zlib.crc32(s));
为什么?有关缓冲区的错误?