1.使用turtle库绘制两个五角星,画布宽800像素高500像素,title为自己的名字,线条粗细为5,边长为200像素,内角度数为36,左边五角星为红色,右边五角星为黄色
时间: 2024-12-16 17:22:34 浏览: 6
首先,你需要安装Python的`turtle`库,如果你还没有安装,可以使用pip安装:
```bash
pip install turtle
```
然后,你可以通过以下代码使用`turtle`绘制两个五角星,按照你的要求设置参数:
```python
import turtle
# 设置画布大小、标题和线条粗细
window = turtle.Screen()
window.bgcolor("white")
window.title("Your Name") # 替换"Your Name"为你的真实姓名
window.setup(width=800, height=500)
# 创建turtle对象并设置颜色和线条粗细
t1 = turtle.Turtle()
t1.speed(0) # 设置最快的速度
t1.pencolor("red")
t2 = turtle.Turtle()
t2.color("yellow")
t2.pensize(5)
t2.speed(0)
# 左侧五角星
for _ in range(5):
t1.forward(200)
t1.right(72) # 内角度数是36度,所以外角度数是144度
# 右侧五角星在左侧的基础上偏移一定距离
x_offset = 200
t2.penup()
t2.goto(-x_offset, 0) # 右移
t2.pendown()
for _ in range(5):
t2.forward(200)
t2.right(72)
# 结束绘图并隐藏turtle
t1.hideturtle()
t2.hideturtle()
# 主循环保持窗口打开
turtle.done()
```
阅读全文