📅  最后修改于: 2023-12-03 14:46:43.469000             🧑  作者: Mango
在Python中,我们可以使用不同的库和方法来画圆。下面将介绍两种常见的方法。
turtle库是Python自带的一种绘图库,可以用于绘制各种图形,包括圆形。使用turtle库画圆的步骤如下:
import turtle
t = turtle.Turtle()
t.pencolor("red")
t.pensize(3)
t.circle(50)
完整代码如下:
import turtle
t = turtle.Turtle()
t.pencolor("red")
t.pensize(3)
t.circle(50)
turtle.done()
matplotlib库是Python中非常流行的可视化库,可以用于绘制各种图形。使用matplotlib库画圆的步骤如下:
import matplotlib.pyplot as plt
circle = plt.Circle((0, 0), radius=0.5, color="red")
其中,(0, 0)表示圆心坐标,radius表示圆的半径,color表示圆的颜色。
fig, ax = plt.subplots()
ax.add_artist(circle)
plt.axis("equal")
plt.show()
完整代码如下:
import matplotlib.pyplot as plt
circle = plt.Circle((0, 0), radius=0.5, color="red")
fig, ax = plt.subplots()
ax.add_artist(circle)
plt.axis("equal")
plt.show()
以上就是两种常见的Python画圆方法。