使用turtle库画一个大药胶囊上面写着沈药
时间: 2023-07-20 09:03:59 浏览: 132
使用python turtle库画一只小猪佩奇,十分有趣
好的,下面是使用Python的turtle库画一个大药胶囊,并在上面写着“沈药”的代码:
```python
import turtle
# 设置画笔初始位置和朝向
turtle.penup()
turtle.goto(0, -200)
turtle.pendown()
turtle.setheading(0)
# 画大药胶囊
turtle.fillcolor("#8FD8D2")
turtle.begin_fill()
turtle.circle(200, 90)
turtle.fd(400)
turtle.circle(200, 90)
turtle.fd(400)
turtle.end_fill()
# 写“沈药”
turtle.penup()
turtle.goto(-100, 0)
turtle.pendown()
turtle.write("沈药", font=("Arial", 36, "bold"))
# 隐藏画笔
turtle.hideturtle()
# 显示画布
turtle.done()
```
运行上面的代码,即可看到绘制的大药胶囊,并在上面写着“沈药”的效果。你可以根据需要修改字体、颜色和位置等参数。
阅读全文