📜  python如何画圆 - Python(1)

📅  最后修改于: 2023-12-03 14:46:43.469000             🧑  作者: Mango

Python如何画圆

在Python中,我们可以使用不同的库和方法来画圆。下面将介绍两种常见的方法。

方法一:turtle库

turtle库是Python自带的一种绘图库,可以用于绘制各种图形,包括圆形。使用turtle库画圆的步骤如下:

  1. 导入turtle库
import turtle
  1. 创建一个turtle对象,同时设置线条颜色和宽度
t = turtle.Turtle()
t.pencolor("red")
t.pensize(3)
  1. 使用turtle画圆
t.circle(50)

完整代码如下:

import turtle

t = turtle.Turtle()
t.pencolor("red")
t.pensize(3)

t.circle(50)

turtle.done()
方法二:matplotlib库

matplotlib库是Python中非常流行的可视化库,可以用于绘制各种图形。使用matplotlib库画圆的步骤如下:

  1. 导入matplotlib库
import matplotlib.pyplot as plt
  1. 创建一个圆形的路径
circle = plt.Circle((0, 0), radius=0.5, color="red")

其中,(0, 0)表示圆心坐标,radius表示圆的半径,color表示圆的颜色。

  1. 将圆形路径添加到plt对象中,并显示
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画圆方法。