使用python画一个派大星
时间: 2024-09-22 15:09:12 浏览: 69
在Python中,我们可以使用matplotlib库来绘制一个派大星(五角星)。以下是一个简单的例子:
```python
import matplotlib.pyplot as plt
import numpy as np
def draw_star(num_points):
t = np.linspace(0, 2*np.pi, num_points, endpoint=False)
x = 5 * (np.cos(t) + np.cos(2*t))
y = 5 * (np.sin(t) - np.sin(2*t))
return x, y
fig, ax = plt.subplots()
x, y = draw_star(100)
ax.plot(x, y, 'g')
plt.fill(x, y, color='green', alpha=0.5) # 绘制星形并填充颜色
ax.set_xlim([-6, 6])
ax.set_ylim([-6, 6])
plt.title("绘制派大星")
plt.grid(True)
plt.show()
相关问题
python画一个派大星
下面是用 Python 的 turtle 模块画派大星的代码:
```python
import turtle
# 设置画布大小
turtle.setup(500, 500)
# 创建画笔
pen = turtle.Turtle()
# 设置画笔颜色和粗细
pen.color('yellow')
pen.pensize(5)
# 绘制五角星
pen.begin_fill()
for i in range(5):
pen.forward(100)
pen.right(144)
pen.end_fill()
# 移动画笔到新位置
pen.penup()
pen.goto(70, 70)
pen.pendown()
# 绘制眼睛
pen.color('black')
pen.begin_fill()
pen.circle(20)
pen.end_fill()
# 移动画笔到新位置
pen.penup()
pen.goto(-70, 70)
pen.pendown()
# 绘制眼睛
pen.begin_fill()
pen.circle(20)
pen.end_fill()
# 移动画笔到新位置
pen.penup()
pen.goto(0, 20)
pen.pendown()
# 绘制嘴巴
pen.pensize(10)
pen.right(90)
pen.circle(40, 180)
# 隐藏画笔
pen.hideturtle()
# 点击关闭窗口
turtle.done()
```
运行代码后,会弹出一个窗口显示派大星的图案。可以通过鼠标点击窗口关闭程序。
用Python画一个派大星
好的,以下是用Python绘制派大星的代码:
```python
import turtle
# 创建画布和画笔
t = turtle.Turtle()
screen = t.getscreen()
# 绘制身体
t.color('pink')
t.begin_fill()
t.circle(100)
t.end_fill()
# 绘制眼睛
t.penup()
t.goto(-30, 130)
t.pendown()
t.color('white')
t.begin_fill()
t.circle(15)
t.end_fill()
t.penup()
t.goto(30, 130)
t.pendown()
t.begin_fill()
t.circle(15)
t.end_fill()
# 绘制瞳孔
t.penup()
t.goto(-30, 130)
t.pendown()
t.color('black')
t.begin_fill()
t.circle(5)
t.end_fill()
t.penup()
t.goto(30, 130)
t.pendown()
t.begin_fill()
t.circle(5)
t.end_fill()
# 绘制鼻子
t.penup()
t.goto(0, 100)
t.pendown()
t.color('black')
t.begin_fill()
t.circle(10)
t.end_fill()
# 绘制嘴巴
t.penup()
t.goto(-50, 60)
t.pendown()
t.color('red')
t.setheading(-60)
t.circle(70, 120)
# 绘制手臂
t.penup()
t.goto(70, 0)
t.pendown()
t.color('pink')
t.pensize(20)
t.setheading(-160)
t.circle(80, 80)
t.penup()
t.goto(-70, 0)
t.pendown()
t.setheading(20)
t.circle(-80, 80)
# 绘制腿
t.penup()
t.goto(0, -100)
t.pendown()
t.color('pink')
t.pensize(25)
t.setheading(-90)
t.forward(60)
# 隐藏画笔
t.hideturtle()
# 点击关闭按钮退出程序
screen.exitonclick()
```
运行上述代码即可绘制出一个可爱的派大星!
阅读全文