|
|
|
|
|
by takeda
3836 days ago
|
|
Not really. Veedrac had a good analogy, think of text as something abstract, for example imagine text is an image or sound, if you want to store it in bytes you need to encode it, and to read back you decode it. As to_bytes/from_bytes, actually python provides it too: to_bytes -> bytes(<text>) from_bytes -> str(<bytes>) |
|