📌  相关文章
📜  如何在没有 for 循环的情况下打印列表 python 代码示例

📅  最后修改于: 2022-03-11 14:46:00.943000             🧑  作者: Mango

代码示例1
list = ['a','b','c']
print(', '.join(list) # You can also delete the comma and just put space or you can use \n to make new line