如何将数字列表转换为字符串列表?

How to convert a list of numbers to a list of strings?

关于在数字列表中添加引号,我正在碰壁。

如何将 单引号 添加到此数字列表?

num = [1, 2, 3, 4]

试试这个:

num = [1, 2, 3, 4]
new_list = [str(i) for i in num]

#output
print(new_list)
['1', '2', '3', '4']

给你::-)

In [1335]: str(num)                                                                                                                                                                                        
Out[1335]: '[1, 2, 3, 4]'
num= list(map(str, num))
print(num)
#output
['1', '2', '3', '4']

试试这个解决方案:

    x = [1,2,3,4]
    x = map(lambda x: str(x), x)x = list(x)
    print(x)
    str(x)