小编典典

如何从Python列表中删除方括号?

python

LIST = [‘Python’,’problem’,’whatever’]
print(LIST)

当我运行该程序时,我得到

[Python, problem, whatever]

是否可以从输出中删除该方括号?


阅读 215

收藏
2020-12-20

共1个答案

小编典典

您可以将其转换为字符串,而不是直接打印列表:

print(", ".join(LIST))

如果列表中的元素不是字符串,则可以使用repr(如果要在字符串周围加上引号)或str(如果不需要)将它们转换为字符串,如下所示:

LIST = [1, "foo", 3.5, { "hello": "bye" }]
print( ", ".join( repr(e) for e in LIST ) )

给出输出:

1, 'foo', 3.5, {'hello': 'bye'}
2020-12-20