Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 python 中有一个 IOString 缓冲区,我想要的是迭代它,并且每次迭代读取一组字节,例如,第一次迭代从 0 到 65536,第二次从 65537 到 131072 并继续......我不知道怎么做,我正在使用方法read,但只读取我正在传递的位置的一个字节。
read
有任何想法吗?
您可以给出一个参数,StringIO.read()该参数是要读取的字节数。
StringIO.read()
myStringIO.seek(0) first = myStringIO.read(65536) second = myStringIO.read(65536)