欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python绘图

程序员文章站 2022-03-29 16:07:25
...
python的画图:

import matplotlib.pyplot as plt 
plt.figure() 
plt.plot(nis,eis) #plt.scatter(nis, eis) #bar

# for a, b in zip(nis, eis):
#     plt.text(a, b, (a, b), ha='center', va='bottom', fontsize=10)

plt.xlabel("a")
plt.ylabel("b")

#plt.plot(x, y_lru, label="bb")
#plt.legend()  # 用以显示图例

plt.grid(True)
plt.show()


ax = plt.subplot(2,2,1)
ay = plt.subplot(2,2,2)
aa = plt.subplot(2,2,3)
ab = plt.subplot(2,2,4)



//子类都能父类的方法->子类的要求应该更加宽泛
子类抛出异常不能比父类多
ensures可以比父类要求多
requries要求比父类少
满足子类的不变式一定满足父类
但子类不变式不应该对父类不变式增加新的约束(长方形->正方形)
    可以使用父类的方法进行检测
可以减弱父类requires增加父类ensures
子类副作用范围可以不同,不能影响父类