Answers for "python encode text to ascii"

7

string to ascii value python

>>> s = 'hi'
>>> [ord(c) for c in s]
[104, 105]
Posted by: Guest on June-20-2020
0

python ascii code to string

>>> L = [104, 101, 108, 108, 111, 44, 32, 119, 111, 114, 108, 100]
>>> ''.join(chr(i) for i in L)
'hello, world'
Posted by: Guest on October-28-2020

Python Answers by Framework

Browse Popular Code Answers by Language