小白学Python(10)——pyecharts 绘制仪表图 Gauge时间:2023-03-09 22:12:14 from pyecharts import options as opts from pyecharts.charts import Gauge, Page gauge=( Gauge() .add("", [("完成率", 66.6)]) .set_global_opts(title_opts=opts.TitleOpts(title="Gauge-基本示例")) ) gauge.render('gauge.html')