此问题在此处已有答案:
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'
此问题在此处已有答案:
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'
1条答案
按热度按时间fruv7luv1#
您可以执行以下操作: