绘制黑色背景的满天星(100颗)的python代码
时间: 2023-10-10 07:14:18 浏览: 204
以下是绘制黑色背景的满天星的Python代码:
```python
import turtle
# 设置画布大小和背景颜色
turtle.setup(width=600, height=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()
# 绘制100颗星星
for i in range(100):
# 随机生成星星的坐标、颜色和大小
x = random.randint(-300, 300)
y = random.randint(-300, 300)
color = random.choice(['white', 'red', 'yellow', 'blue'])
size = random.randint(10, 30)
# 调用绘制星星的函数
draw_star(x, y, color, size)
# 隐藏画笔
turtle.hideturtle()
turtle.done()
```
此代码使用turtle模块绘制100颗大小、颜色、位置均随机的星星,背景为黑色。
阅读全文