python 怎麼把清單的[]去掉?以下跟大家講解具體方法:
LIST = ['Python','problem','whatever'] print(LIST)
運行結果:
[Python, problem, whatever]
相關推薦:《Python影片教學》
如果想從輸出中刪除方括號可以將其轉換為字串,而不是直接列印清單:
>>> LIST = ['Python','php','java'] >>> print(", ".join(LIST)) Python, php, java
如果清單中的元素不是字串,您可以使用repr(如果您想要引用字串)或str (如果沒有)將它們轉換為字串,如下所示:
>>> LIST = [1, "foo", 3.5, { "hello": "bye" }] >>> print(", ".join(repr(e) for e in LIST)) 1, 'foo', 3.5, {'hello': 'bye'}
以上是python 怎麼把列表的[]去掉的詳細內容。更多資訊請關注PHP中文網其他相關文章!