用python代码画一幅五颜六色的星空
时间: 2023-12-25 09:26:34 浏览: 193
python实现画星空图
```python
import turtle
import random
# 设置画布大小和背景颜色
turtle.setup(800, 600)
turtle.bgcolor('black')
# 定义星星函数
def draw_star(x, y, color, size):
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(100):
x = random.randint(-400, 400)
y = random.randint(-300, 300)
color = random.choice(['white', 'yellow', 'red', 'blue', 'green', 'purple'])
size = random.randint(5, 25)
draw_star(x, y, color, size)
# 隐藏画笔
turtle.hideturtle()
# 显示画布
turtle.done()
```
--相关问题--:
1. 如何在Python中使用turtle库画图?
2.
阅读全文