How to convert a list of integers to array of chars in Python

1 Answer

0 votes
lst = [3, 5, 7, 0, 9]    
lst = list(map(str, lst))

print(lst)



'''
run:

['3', '5', '7', '0', '9']

'''

 



answered Jan 4, 2022 by avibootz
...