vote up 7 vote down star

I've got a list in a Python program that contains a series of numbers, which are themselves ASCII values. How do I convert this into a "regular" string that I can echo to the screen?

flag

56% accept rate

4 Answers

vote up 19 vote down check

You are probably looking for 'chr()':

>>> L = [104, 101, 108, 108, 111, 44, 32, 119, 111, 114, 108, 100]
>>> ''.join(chr(i) for i in L)
'hello, world'
link|flag
vote up 8 vote down

Same basic solution as others, but I personally prefer to use map instead of the list comprehension:


>>> L = [104, 101, 108, 108, 111, 44, 32, 119, 111, 114, 108, 100]
>>> ''.join(map(chr,L))
'hello, world'
link|flag
vote up 3 vote down
l = [83, 84, 65, 67, 75]

s = "".join([chr(c) for c in l])

print s
link|flag
vote up 1 vote down
import array
def f7(list):
    return array.array('B', list).tostring()

from Python Patterns - An Optimization Anecdote

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.