语法基础
数组自带长度属性 length,可以在遍历的时候使用: int []ages new int[10];for (int i 0; i < ages.length; i)System.out.println(ages[i]); 数组可以使用增强式for语句进行只读式遍历: int[] years new int[10];for (int ye…
使用seanborn.histplot()函数绘制直方图
from matplotlib.pyplot as plt
import seaborn as snsdata_setnp.array([2,3,3,4,4,4,4,5,5,6])
plt.hist(fish_data) (1)dataNone, 表示数据源。
(2)xNone, 表示直方图的分布垂直与x轴…