将空格分隔的字符串转为逗号分隔的列表
时间: 2023-05-14 08:06:04 浏览: 180
Python 专题三 字符串的基础知识
可以使用 Python 中的 split() 和 join() 方法来实现将空格分隔的字符串转为逗号分隔的列表。具体代码如下:
```
string = "hello world how are you"
list = string.split(" ")
result = ",".join(list)
print(result)
```
输出结果为:
```
hello,world,how,are,you
```
阅读全文