Steven D'Aprano wrote:

> 
> 
>>>>''.join(map(lambda n: chr(n), (0x73, 0x70, 0x61, 0x6D)))
> 
> 'spam'

Why the verbal diarrhoea? What's wrong with the (already posted)

''.join(map(chr, (0x73, 0x70, 0x61, 0x6D)))

???
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to