在Python中有没有一种方法可以格式化列表的输出?[duplicate]

hgqdbh6s  于 2023-03-11  发布在  Python
关注(0)|答案(1)|浏览(119)

此问题在此处已有答案

How to concatenate (join) items in a list to a single string(11个答案)
(13个答案)
16小时前关门了。
我有一个字符列表;有没有一种方法可以打印这个列表,这样列表就没有默认的方括号和逗号了?
例如:

# this is my list
list = ['a', 'b', 'c']

# this is what I want the output to be
>>>'abc'
fruv7luv

fruv7luv1#

您可以执行以下操作:

print("".join(list))

相关问题