“chaîne d'octet python” Réponses codées

chaîne d'octet python

#A byte string can be decoded back into a character string, 
#if you know the encoding that was used to encode it.
b'I am a string'.decode('ASCII')
b'I am a string'.decode('utf-8')
Quaint Quoll

Octets python

>>> (1024).to_bytes(2, byteorder='big')
b'\x04\x00'
>>> (1024).to_bytes(10, byteorder='big')
b'\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00'
>>> (-1024).to_bytes(10, byteorder='big', signed=True)
b'\xff\xff\xff\xff\xff\xff\xff\xff\xfc\x00'
>>> x = 1000
>>> x.to_bytes((x.bit_length() + 7) // 8, byteorder='little')
b'\xe8\x03'
Mid-ager

Réponses similaires à “chaîne d'octet python”

Questions similaires à “chaîne d'octet python”

Plus de réponses similaires à “chaîne d'octet python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code