我有一个bytearray
缓冲区:
buffer = bytearray() #creates the buffer
我的数组最大应为500字节。
我想要的是:
缓冲区填充500字节后,我想清理数组并从头开始重新添加。
if (buffer.count() >= 500) #ERROR!! count()
buffer.clean() #ERROR!! clean?!
buffer.append(10) #appends some value to the array
count()
需要一个参数,但在这个例子中,应该是什么?我知道this post,但不清楚我怎么能算出我的数组中有多少。 b.count(b'a')
答案 0 :(得分:0)
我自己/通过评论找到答案 - 我可以使用以下内容:
len(buffer) # to have the length of the buffer
del buffer[:] # for cleaning up the buffer