python中二进制序列类型的用法是什么?

时间:2015-06-14 10:57:44

标签: python

Python有很多种类型 python中二进制序列类型的用法是什么? 有3种二进制序列类型:

  1. bytes
  2. bytearray
  3. MemoryView
  4. 它们用于什么?

1 个答案:

答案 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