開始使用免費開始

你的第一個文字雲

你在影片中看到,文字雲很直觀,而且能快速幫助你先對一段文字的主題有初步概念。

在這個練習中,你將建立你的第一個文字雲。已經為你定義了一個字串 east_of_eden,內容取自 John Steinbeck 小說《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)
編輯並執行程式碼