SyntaxFix
Write A Post
Hire A Developer
Questions
In python 3 you can easily convert a byte string into a list of integers (0..255) by
>>> list(b'y\xcc\xa6\xbb') [121, 204, 166, 187]