cut_text = jieba.cut(str_negative_note)
result = "/".join(cut_text)
wc = WordCloud(background_color='white', width=800, relative_scaling=1,
height=600, max_font_size=100,
max_words=1000)
wc.generate(result)
plt.figure("negative notes word cloud")
plt.imshow(wc)
plt.axis("off")
plt.show()
cut_text是一个str类型的变量,是你用所有单词拼成的
其它都不用改,直接用