LIST = [‘Python’,’problem’,’whatever’] print(LIST)
当我运行该程序时,我得到
[Python, problem, whatever]
是否可以从输出中删除该方括号?
您可以将其转换为字符串,而不是直接打印列表:
print(", ".join(LIST))
如果列表中的元素不是字符串,则可以使用repr(如果要在字符串周围加上引号)或str(如果不需要)将它们转换为字符串,如下所示:
repr
str
LIST = [1, "foo", 3.5, { "hello": "bye" }] print( ", ".join( repr(e) for e in LIST ) )
给出输出:
1, 'foo', 3.5, {'hello': 'bye'}