最简单的类
function Person() {this.name "张三";this.age 20;
}
var p new Person();
console.log(p.name);//张三构造函数和原型链里面增加方法
function Person(){this.name张三; /*属性*/this.age20;this.runfunction(){console.log(this.name在运动);}
}…
导入模块
import jieba
import pandas as pd
from collections import Counter
from pyecharts.charts import Line,Pie,Scatter,Bar,Map,Grid
from pyecharts.charts import WordCloud
from pyecharts import options as opts
from pyecharts.globals import ThemeType
from…