在python中将"1 2 3 5"类似字符串转化为列表[1,2,3,4]
时间: 2024-05-15 19:14:35 浏览: 68
python 实现列表转字符串
可以使用split()方法将字符串按空格分割成字符串列表,然后使用map()函数和int()函数将字符串列表中的元素转换成整数,最后使用list()函数将map对象转换成列表,代码如下:
```
s = "1 2 3 5"
lst = list(map(int, s.split()))
print(lst)
```
输出结果为:
```
[1, 2, 3, 5]
```
阅读全文