4
my_list=["one", "one two", "three"]
,我產生了這個表中的詞雲使用生成詞雲在Python中列表中的項目
wordcloud = WordCloud(width = 1000, height = 500).generate(" ".join(my_list))
正如我將所有的物品放入字符串,生成詞雲的
"one","two","three"
But I want to generate word cloud for the values, "one","one two","three"
幫我在列表中
我得到「KeyError異常:「」 – pyd
能否請您與您的代碼運行我的名單> \? – pyd