from pyecharts.charts import WordCloud from pyecharts import options as opts # 准备数据 words = [("Python", 1000), ("Java", 618), ("JavaScript", 438), ("C++", 335), ("C#", 221)] # 创建词云图实例 wc = WordCloud() wc.set_global_opts(title_opts=opts.TitleOpts(title="词云图示...