我有一个字符串列表:
list_of_strings = ["A", "List", "Of", "Strings"]
我想将其转换为一个新的字符串,如下所示:
new_string=""" "A", "List", "Of", "Strings" """
(
我尝试使用join
函数,但未能正确执行:
','.join(list_of_strings)
)
答案 0 :(得分:3)
您需要在字符串上使用双引号。
new_string = " " + ", ".join(['"{}"'.format(x) for x in list_of_strings]) + " "