python 代碼 如何實現['abc','def']轉化為['abc,def']
时间: 2023-05-23 22:06:38 浏览: 39
让你的Python代码实现类型提示功能
A:
可以使用join()函数,传入','作为分隔符,将列表中的元素连接在一起,最终形成一个字符串。
示例代码:
```
lst = ['abc', 'def']
res = ','.join(lst)
print([res]) # 输出 ['abc,def']
```
阅读全文
让你的Python代码实现类型提示功能