python词云图怎么做

2025-11-11 00:52:11

1、安装python3.6

2、安装vscode并配置python插件

 

3、安装WordCloud1.6.0。

1.win+R打开运行,输入cmd进入命令行。

2.输入pip install wordcloud,回车安装。

4、新建一个名为wordcloud的文件夹,文件夹下新建main.py文件。在此文件夹下右键,点击open with code,用vs code打开项目。

5、编辑main.py,写入如下代码:

import wordcloud

word = wordcloud.WordCloud().generate(

    '''

        When I do count the clock that tells the time,

        And see the brave day sunk in hideous night;

        When I behold the violet past prime,

        And sable curls all silver'd o'er with white:

        When lofty trees I see barren of leaves,

        Which erst from heat did canopy the herd,

        And summer's green, all girded up in sheaves,

        Born on the bier with white and bristly beard;

        Then of thy beauty do I question make,

        That thou among the wastes of time must go,

        Since sweets and beauties do themselves forsake,

        And die as fast as they see others grow;

        And nothing 'gainst Time's scythe can make defence

        Save breed, to brave him when he takes thee hence.

    '''

)  # 三引号之间的文本,换成你想要的文本

pic = word.to_image()

pic.show()

6、在vscode的编辑页面右上角有一个绿色箭头标志,点击即可运行代码,得到词云图片。

python词云图怎么做

声明:本网站引用、摘录或转载内容仅供网站访问者交流或参考,不代表本站立场,如存在版权或非法内容,请联系站长删除,联系邮箱:site.kefu@qq.com。
猜你喜欢