利用turtle库画一个线宽为5,颜色为绿色,填充为黄色的正六边形
时间: 2024-02-27 11:58:03 浏览: 76
好的,以下是利用turtle库画一个线宽为5,颜色为绿色,填充为黄色的正六边形的代码:
```python
import turtle
# 创建画布并设置画笔的属性
t = turtle.Turtle()
t.pensize(5)
t.pencolor("green")
t.fillcolor("yellow")
# 绘制正六边形
t.begin_fill()
for i in range(6):
t.forward(100)
t.right(60)
t.end_fill()
# 关闭画布
turtle.done()
```
运行以上代码,turtle将会画出一个线宽为5,颜色为绿色,填充为黄色的正六边形。
相关问题
利用turtle库绘制一个线宽为5,颜色为绿色,填充为黄色的正六边形
好的,以下是绘制正六边形的代码:
```python
import turtle
pen = turtle.Turtle()
# 设置线宽为5,颜色为绿色
pen.width(5)
pen.color("green")
# 开始填充颜色
pen.begin_fill()
# 绘制正六边形
for i in range(6):
pen.forward(100)
pen.left(60)
# 结束填充颜色
pen.end_fill()
turtle.done()
```
以上代码中,使用了turtle库中的Turtle类来创建一个画笔pen,然后设置了画笔的线宽和颜色。接着使用begin_fill()方法开始填充颜色,然后用循环语句绘制正六边形。最后使用end_fill()方法结束填充颜色。运行以上代码,即可绘制出线宽为5,颜色为绿色,填充为黄色的正六边形。
利用turtle库绘制一个线宽为5,颜色为绿色,填充色为黄色的正六边形
好的,以下是利用turtle库绘制线宽为5,颜色为绿色,填充色为黄色的正六边形的Python代码:
```python
import turtle
# 创建一个画笔
pen = turtle.Turtle()
# 设置线宽为5
pen.width(5)
# 设置画笔颜色为绿色
pen.color("green")
# 开始填充颜色,填充色为黄色
pen.begin_fill()
pen.fillcolor("yellow")
# 绘制正六边形
for i in range(6):
pen.forward(100)
pen.right(60)
# 结束填充
pen.end_fill()
# 程序结束,关闭窗口
turtle.done()
```
希望能够帮到你!
阅读全文