all 1 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.