Python字符串列表到1个字符串,用逗号和引号(,&“)分隔

时间:2018-11-21 14:14:19

标签: python string list join quotes

我有一个字符串列表: list_of_strings = ["A", "List", "Of", "Strings"]

我想将其转换为一个新的字符串,如下所示:

new_string=""" "A", "List", "Of", "Strings" """

( 我尝试使用join函数,但未能正确执行: ','.join(list_of_strings)

1 个答案:

答案 0 :(得分:3)

您需要在字符串上使用双引号。

new_string = "  " + ", ".join(['"{}"'.format(x) for x in list_of_strings]) + "  "