开始使用免费开始使用

您的第一个词云

我们在视频中看到,词云直观易懂,是快速了解一段文本在讲什么的好方法。

在本练习中,您将构建自己的第一个词云。我们已为您定义了字符串 east_of_eden,其中包含约翰·斯坦贝克小说《East of Eden》(伊甸之东)开头的一句话。您可以在 IPython Shell 中查看它的内容。

matplotlib.pyplot 包已作为 plt 导入。

本练习是课程的一部分

Python 中的情感分析

查看课程

交互式实操练习

通过完成这段示例代码来试试这个练习。

from ____ import ____

# Generate the word cloud from the east_of_eden string
cloud_east_of_eden = ____(background_color="white").____(east_of_eden)
编辑并运行代码