python画圆运用了什么函数
程序员文章站
2022-03-12 11:58:36
...
python画圆运用了matplotlb库的figure()和Circle()函数;其中,figure()函数用于确定画布大小,而Circle()函数用于配置圆的相关信息,进而画圆。
本教程操作环境:windows7系统、Python3版、Dell G3电脑。
python画圆代码
from matplotlib.patches import Ellipse, Circle import matplotlib.pyplot as plt def plot_cicle(): fig = plt.figure() ax = fig.add_subplot(111) cir1 = Circle(xy = (0.0, 0.0), radius=2, alpha=0.5) ax.add_patch(cir1) x, y = 0, 0 ax.plot(x, y, 'ro') plt.axis('scaled') plt.axis('equal') #changes limits of x or y axis so that equal increments of x and y have the same length plt.show() plot_cicle()
以上就是python画圆运用了什么函数的详细内容,更多请关注其它相关文章!
上一篇: 教你怎么仿做得物APP微信小程序
推荐阅读
-
append函数是什么意思(python入门详细教程)
-
append函数是什么意思(python入门详细教程)
-
python面试题之什么是lambda函数?
-
为什么 Python 没有函数重载?如何用装饰器实现函数重载?
-
TP里面insert() 和update() 都调用了D函数。可是为什么update的D函数没有生效?
-
什么是python的id函数
-
Python中既然可以直接通过父类名调用父类方法为什么还会存在super函数?
-
python fromkeys函数是什么?fromkeys函数的作用是什么?
-
TP里面insert() 和update() 都调用了D函数。可是为什么update的D函数没有生效?
-
python get函数有什么作用?示例解析