I\'m using this code to get standard output from an external program:
>>> from subprocess import * >>> command_stdout = Popen([\'ls\', \'-l
I think this way is easy:
>>> bytes_data = [112, 52, 52] >>> "".join(map(chr, bytes_data)) 'p44'