將英文句子轉換為詞雲
# 歌詞->統計數量->詞頻->詞雲->作圖出來顯示給你看
from wordcloud import WordCloud
text = """
She's indecisive she can't decide
She keeps on looking from left to right
Girl come a bit closer look in my eyes
Searching is so wrong I'm Mr. Right
You seem like the type to love 'em and leave 'em
And disappear right after this song
So give me the night to show you hold you
Don't leave me out here dancin' alone
"""
# 產生文字雲的核心城市碼
wd = WordCloud().generate(text) # 由txt文字產生WordCloud物件
imageCloud = wd.to_image() # 由WordCloud物件建立詞雲影像檔
### 處理圖片輸出
# img_resized = imageCloud.resize((300, 200)) # 調整大小
imageCloud.show()