jieba库分词python123
时间: 2023-10-06 14:06:34 浏览: 126
ruby-fighter:Ruby中的Street Fighter II!
使用jieba库进行中文分词可以按照以下步骤进行:
1. 安装jieba库:
可以使用pip命令进行安装:`pip install jieba`
2. 导入jieba库:
```python
import jieba
```
3. 对文本进行分词:
```python
text = "我爱北京天安门"
words = jieba.cut(text)
```
其中,`cut`方法返回一个可迭代的生成器,每次迭代返回一个分好的词。
4. 输出分好的词:
```python
for word in words:
print(word)
```
完整代码如下:
```python
import jieba
text = "我爱北京天安门"
words = jieba.cut(text)
for word in words:
print(word)
```
输出结果:
```
我
爱
北京
天安门
```
阅读全文