Python有很多种类型 python中二进制序列类型的用法是什么? 有3种二进制序列类型:
bytes
bytearray
MemoryView
它们用于什么?
答案 0 :(得分:1)
实际上已经讨论了所有这三种类型的用法:
1)关于bytes
,请查看问题the bytes type in python 2.7 and PEP-358
2)关于bytearray
用法,请查看问题Where are python bytearrays used?
3)关于MemoryView
关于问题的好答案
When should a memoryview be used?
和What exactly is the point of memoryview in Python