📜  将列表格式化为字符串 python 代码示例

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

代码示例1
lst = ["hi", "there"]
print(", ".join(lst))

cli
--------------
hi, there