用python,turtle写Dream
时间: 2024-05-01 12:22:25 浏览: 81
使用Python的turtle写字
这里是一个简单的用 Python turtle 模块画梦境的示例代码,你可以根据自己的需求进行修改:
```python
import turtle
# 设置背景颜色
turtle.bgcolor('black')
# 定义函数,用于画星星
def draw_star(turtle, x, y, size):
turtle.penup()
turtle.goto(x, y)
turtle.pendown()
turtle.begin_fill()
for i in range(5):
turtle.forward(size)
turtle.right(144)
turtle.end_fill()
# 创建 Turtle 对象
t = turtle.Turtle()
# 设置画笔颜色和速度
t.color('white')
t.speed(0)
# 画星星
for i in range(50):
x = random.randint(-400, 400)
y = random.randint(-400, 400)
size = random.randint(1, 4)
draw_star(t, x, y, size)
# 隐藏画笔
t.hideturtle()
# 等待用户关闭窗口
turtle.done()
```
运行代码后,你就可以看到一个黑色背景,上面有很多大小不同的白色星星,就像是在一个神秘的梦境中一样。
阅读全文