How to convert list of integers to list of strings in Python

1 Answer

0 votes
lst_int = [4, 5, 34, 6, 837, 8992] 
    
lst_string = list(map(str, lst_int))

print(lst_string) 



'''
run:

['4', '5', '34', '6', '837', '8992']

'''

 



answered Feb 2, 2020 by avibootz

Related questions

2 answers 220 views
1 answer 226 views
1 answer 155 views
4 answers 276 views
...