web-dev-qa-db-fra.com

Convertir une chaîne d'octets en octets ou bytearray

J'ai une chaîne comme suit:

  b'\x00\x00\x00\x00\x07\x80\x00\x03'

Comment puis-je convertir cela en un tableau d'octets? ... et retour à une chaîne d'octets?

7
IAbstract

en python 3:

>>> a=b'\x00\x00\x00\x00\x07\x80\x00\x03'
>>> b = list(a)
>>> b
[0, 0, 0, 0, 7, 128, 0, 3]
>>> c = bytes(b)
>>> c
b'\x00\x00\x00\x00\x07\x80\x00\x03'
>>>
14
steel.ne

De chaîne en tableau d'octets:

a = bytearray.fromhex('00 00 00 00 07 80 00 03')

ou 

a = bytearray(b'\x00\x00\x00\x00\x07\x80\x00\x03')

et retour à la chaîne:

key = ''.join(chr(x) for x in a)
1
RafaelCaballero