Python theorytheory 0/50 · 0%
Web3 integration · medium

33. Working with bytes and encoding

bytes vs str, hex encoding, and base64.

`bytes` are immutable sequences of integers 0-255, distinct from `str` (Unicode text). Converting between them requires an explicit encoding, usually UTF-8.

python
b = b"\x01\x02\xff"
b.hex()                     # "0102ff"
bytes.fromhex("0102ff")     # b'\x01\x02\xff'

s = "gm"
s.encode("utf-8")           # b'gm'
b"gm".decode("utf-8")       # "gm"

import base64
base64.b64encode(b"gm")     # b'Z20='

Blockchain data (addresses, hashes, signatures) is often shown as `0x`-prefixed hex text but stored/transmitted as raw bytes; strip the prefix before `bytes.fromhex`.

Check your understanding

  1. 1. What does `bytes.fromhex("0102ff")` produce?

  2. 2. What must you do before `bytes.fromhex()` on a `0x`-prefixed address?

  3. 3. What encoding converts a Python str to bytes?