60

bytes当在 Python 3 中迭代一个对象时,一个人会bytes得到ints

>>> [b for b in b'123']
[49, 50, 51]

如何获取长度为 1 的bytes对象?

以下是可能的,但对读者来说不是很明显,很可能表现不佳:

>>> [bytes([b]) for b in b'123']
[b'1', b'2', b'3']
4

7 回答 7

45

如果您担心此代码的性能并且int作为字节不适合您的情况,那么您可能应该重新考虑您使用的数据结构,例如,改用str对象。

您可以对对象进行切片bytes以获得 1 长度的bytes对象:

L = [bytes_obj[i:i+1] for i in range(len(bytes_obj))]

有PEP 0467 -提出方法的二进制序列的次要 API 改进:bytes.iterbytes()

>>> list(b'123'.iterbytes())
[b'1', b'2', b'3']
于 2013-01-10T21:53:00.003 回答
22

int.to_bytes

int对象有一个to_bytes方法,可用于将 int 转换为其对应的字节:

>>> import sys
>>> [i.to_bytes(1, sys.byteorder) for i in b'123']
[b'1', b'2', b'3']

与其他一些答案一样,尚不清楚这是否比 OP 的原始解决方案更具可读性:我认为长度和字节顺序参数使它变得更加嘈杂。

结构体解包

另一种方法是使用struct.unpack,尽管这也可能被认为难以阅读,除非您熟悉 struct 模块:

>>> import struct
>>> struct.unpack('3c', b'123')
(b'1', b'2', b'3')

(正如 jfs 在评论中观察到的,格式字符串 forstruct.unpack可以动态构造;在这种情况下,我们知道结果中的单个字节数必须等于原始字节串中的字节数,所以这struct.unpack(str(len(bytestring)) + 'c', bytestring)是可能的。)

表现

>>> import random, timeit
>>> bs = bytes(random.randint(0, 255) for i in range(100))

>>> # OP's solution
>>> timeit.timeit(setup="from __main__ import bs",
                  stmt="[bytes([b]) for b in bs]")
46.49886950897053

>>> # Accepted answer from jfs
>>> timeit.timeit(setup="from __main__ import bs",
                  stmt="[bs[i:i+1] for i in range(len(bs))]")
20.91463226894848

>>>  # Leon's answer
>>> timeit.timeit(setup="from __main__ import bs", 
                  stmt="list(map(bytes, zip(bs)))")
27.476876026019454

>>> # guettli's answer
>>> timeit.timeit(setup="from __main__ import iter_bytes, bs",        
                  stmt="list(iter_bytes(bs))")
24.107485140906647

>>> # user38's answer (with Leon's suggested fix)
>>> timeit.timeit(setup="from __main__ import bs", 
                  stmt="[chr(i).encode('latin-1') for i in bs]")
45.937552741961554

>>> # Using int.to_bytes
>>> timeit.timeit(setup="from __main__ import bs;from sys import byteorder", 
                  stmt="[x.to_bytes(1, byteorder) for x in bs]")
32.197659170022234

>>> # Using struct.unpack, converting the resulting tuple to list
>>> # to be fair to other methods
>>> timeit.timeit(setup="from __main__ import bs;from struct import unpack", 
                  stmt="list(unpack('100c', bs))")
1.902243083808571

struct.unpack似乎比其他方法至少快一个数量级,大概是因为它在字节级别上运行。 int.to_bytes另一方面,它的性能比大多数“明显”的方法差。

于 2019-08-18T10:08:12.737 回答
12

我认为比较不同方法的运行时可能很有用,所以我做了一个基准测试(使用我的库simple_benchmark):

在此处输入图像描述

毫无疑问,NumPy 解决方案是迄今为止处理大字节对象最快的解决方案。

但是,如果需要一个结果列表,那么 NumPy 解决方案(带有tolist())和struct解决方案都比其他替代方案快得多。

我没有包括 guettlis 答案,因为它几乎与 jfs 解决方案相同,只是使用了生成器函数而不是理解。

import numpy as np
import struct
import sys

from simple_benchmark import BenchmarkBuilder
b = BenchmarkBuilder()

@b.add_function()
def jfs(bytes_obj):
    return [bytes_obj[i:i+1] for i in range(len(bytes_obj))]

@b.add_function()
def snakecharmerb_tobytes(bytes_obj):
    return [i.to_bytes(1, sys.byteorder) for i in bytes_obj]

@b.add_function()
def snakecharmerb_struct(bytes_obj):
    return struct.unpack(str(len(bytes_obj)) + 'c', bytes_obj)

@b.add_function()
def Leon(bytes_obj):
    return list(map(bytes, zip(bytes_obj)))

@b.add_function()
def rusu_ro1_format(bytes_obj):
    return [b'%c' % i for i in bytes_obj]

@b.add_function()
def rusu_ro1_numpy(bytes_obj):
    return np.frombuffer(bytes_obj, dtype='S1')

@b.add_function()
def rusu_ro1_numpy_tolist(bytes_obj):
    return np.frombuffer(bytes_obj, dtype='S1').tolist()

@b.add_function()
def User38(bytes_obj):
    return [chr(i).encode() for i in bytes_obj]

@b.add_arguments('byte object length')
def argument_provider():
    for exp in range(2, 18):
        size = 2**exp
        yield size, b'a' * size

r = b.run()
r.plot()
于 2019-08-20T14:20:37.530 回答
10

从 python 3.5 开始,您可以对字节和字节数组使用 % 格式

[b'%c' % i for i in b'123']

输出:

[b'1', b'2', b'3']

上述解决方案比您的初始方法快 2-3 倍,如果您想要更快速的解决方案,我建议使用numpy.frombuffer

import numpy as np
np.frombuffer(b'123', dtype='S1')

输出:

array([b'1', b'2', b'3'], 
      dtype='|S1')

第二种解决方案比 struct.unpack 快约 10%(我使用了与 @snakecharmerb 相同的性能测试,针对 100 个随机字节)

于 2019-08-19T19:28:34.607 回答
7

的三重奏map()bytes()并且zip()成功了:

>>> list(map(bytes, zip(b'123')))
[b'1', b'2', b'3']

但是我不认为它比它更具可读性[bytes([b]) for b in b'123']或性能更好。

于 2019-08-14T20:34:45.183 回答
6

我使用这个辅助方法:

def iter_bytes(my_bytes):
    for i in range(len(my_bytes)):
        yield my_bytes[i:i+1]

适用于 Python2 和 Python3。

于 2019-08-14T10:46:07.533 回答
1

一个简短的方法来做到这一点:

[bytes([i]) for i in b'123\xaa\xbb\xcc\xff']
于 2019-08-18T00:22:35.253 回答