python怎么把一个句子中的单词分理处拉力
时间: 2024-03-01 21:54:08 浏览: 159
Python给定一个句子倒序输出单词以及字母的方法
可以使用字符串的 `split()` 方法将句子中的单词分离出来,示例代码如下:
```python
sentence = "Hello, world! This is a sentence."
words = sentence.split()
print(words)
```
输出结果为:
```
['Hello,', 'world!', 'This', 'is', 'a', 'sentence.']
```
其中,`split()` 方法默认以空格为分隔符将字符串分割成一个列表,可以通过传递自定义的分隔符作为参数来指定不同的分隔符,示例代码如下:
```python
sentence = "Hello|world|This|is|a|sentence"
words = sentence.split("|")
print(words)
```
输出结果为:
```
['Hello', 'world', 'This', 'is', 'a', 'sentence']
```
这样就可以将字符串中的单词分离出来了。
阅读全文