2 lines
143 B
Python
2 lines
143 B
Python
|
def readable_bytes(byteStream: bytes) -> str:
|
||
|
return " ".join([(hex(b) if b >= 16 else hex(b).replace("x", "x0"))[2:] for b in byteStream])
|