import math # 圆心坐标 center_x, center_y = 400, 500 # 半径 radius = 100 # 画圆 for theta in range(0, 360): x = center_x + radius * math.cos(math.radians(theta)) y = center_y + radius * math.sin(math.radians(theta)) ox.append(x) oy.append(y)
时间: 2024-03-21 10:37:40 浏览: 117
好的,这段代码是用 Python 的 math 库画一个圆,如果要画一个三角形,需要使用 Python 的 turtle 库。以下是一个用 turtle 库画三角形的代码示例:
```python
import turtle
# 创建一个 Turtle 实例
t = turtle.Turtle()
# 画三角形
for i in range(3):
t.forward(100) # 向前移动 100 个像素
t.left(120) # 左转 120 度
# 隐藏 Turtle
t.hideturtle()
# 显示绘图窗口
turtle.done()
```
运行上述代码,即可在窗口中看到一个等边三角形。你也可以根据需要调整三角形的大小、位置和颜色等参数。
阅读全文