decimal to string conv

Chris Rebert clp2 at rebertia.com
Fri Feb 27 04:58:26 EST 2009


On Fri, Feb 27, 2009 at 1:45 AM, Aj <arunjr at gmail.com> wrote:
> Hi all,
>
> I am trying to convert a list to string.
> example [80, 89,84,72,79,78,0] is my input. I could make it to just
> [0x50,0x59,0x54,0x48,0x4F,0x4E,0x00].
> but I wanted it to be like "PYTHON".
> I couldnt even convert 0x50 to 'P'. Is there any library api available
> to do this? it will be really helpful to me.

lst = [80, 89,84,72,79,78,0]
print ''.join(map(chr, lst[:-1]))

Cheers,
Chris

-- 
Follow the path of the Iguana...
http://rebertia.com



More information about the Python-list mailing list