python将一行字符串按空格分开
时间: 2023-06-02 10:07:06 浏览: 155
Python_字符串处理.txt
好的,这个问题可以回答。在Python里,可以使用字符串的 split() 方法将一行字符串按空格分开,示例代码如下:
```
str = "Hello World! This is a sample string."
list = str.split()
print(list)
```
运行结果为:
```
['Hello', 'World!', 'This', 'is', 'a', 'sample', 'string.']
```
阅读全文