字符串的分割处理:输入英文句子,如This is a string 存入数组:
时间: 2024-03-05 20:52:37 浏览: 42
Mysql通过存储过程分割字符串为数组
可以使用空格作为分隔符,将句子分割成单词,然后存入数组中。具体实现可以使用字符串的split方法,示例代码如下:
```python
sentence = "This is a string"
words = sentence.split(" ")
print(words) # 输出:['This', 'is', 'a', 'string']
```
其中,split方法的参数为分隔符,可以是空格、逗号、分号等。该方法返回一个列表,其中包含分割后的字符串。
阅读全文