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?
|
|
|
|
|
|
|
You are probably looking for 'chr()':
|
||
|
|
|
|
Same basic solution as others, but I personally prefer to use map instead of the list comprehension:
|
|||
|
|
|
|
|
||
|
|
|
|
|
||
|
|
