How to convert list of strings to list of ASCII values in Python

1 Answer

0 votes
lst = ['python', 'c', 'c++', 'java']

lst = [ord(ch) for s in lst for ch in s]

print(lst)




'''
run:

[112, 121, 116, 104, 111, 110, 99, 99, 43, 43, 106, 97, 118, 97]

'''

 



answered Mar 16, 2023 by avibootz
...