python使用turtle绘画出星空
时间: 2023-10-24 14:21:38 浏览: 123
使用Python的turtle模块画图
可以使用 Python 的 turtle 库来绘制星空。下面是一个简单的代码示例,可以帮助你开始:
```python
import turtle
import random
# 设置画布大小
turtle.setup(600, 600)
# 设置画笔速度
turtle.speed(10)
# 隐藏画笔
turtle.hideturtle()
# 定义绘制星星的函数
def draw_star(x, y, size, color):
turtle.penup()
turtle.goto(x, y)
turtle.pendown()
turtle.color(color)
turtle.begin_fill()
for i in range(5):
turtle.forward(size)
turtle.right(144)
turtle.end_fill()
# 绘制星空
for i in range(50):
# 随机生成星星的位置和大小
x = random.randint(-300, 300)
y = random.randint(-300, 300)
size = random.randint(5, 20)
# 随机生成星星的颜色
colors = ["white", "yellow", "red", "blue", "green"]
color = random.choice(colors)
draw_star(x, y, size, color)
# 等待用户关闭窗口
turtle.done()
```
这个程序会在画布上绘制 50 颗随机大小和颜色的星星。你可以根据自己的需求调整代码,例如调整画布大小、星星数量、星星大小范围、颜色等等。
阅读全文