将多行文本转换为字符串

问题描述 投票:0回答:1

我是Python的新手,请原谅。我正在运行一些代码,给出以下输出-

Michael
John
Jack
Harry

我想转换输出,如

''Michael','John',Jack','Harry'
我应该如何去做。

感谢所有帮助。

string csv output python-3.7
1个回答
0
投票
如果输出是列表,则可以使用join()将其转换为字符串

myList = ['Michael', 'John', 'Jack', 'Harry'] # String that will separate elements of your list. separator = ', ' stringOfList = separator.join(myList)

您新创建的stringOfList将如下所示:

'Michael, John, Jack, Harry'

© www.soinside.com 2019 - 2024. All rights reserved.