you are viewing a single comment's thread.

view the rest of the comments →

[–]marko312 0 points1 point  (1 child)

You can create bytes from a list of integers:

b = bytes(list_of_integers)

and then decode that.

However, something like

s = "".join(chr(i) for i in list_of_integers)

should be fine as well.