python画图代码大全柯南
时间: 2023-11-25 14:52:38 浏览: 132
python中关于绘图的代码
根据提供的引用[1],以下是一个简单的Python画柯南的代码示例:
```python
import turtle as tl
# 设置画图速度
tl.speed(8)
# 画头
tl.penup()
tl.goto(0, 100)
tl.pendown()
tl.circle(50)
# 画眼睛
tl.penup()
tl.goto(-20, 160)
tl.pendown()
tl.dot(25)
tl.penup()
tl.goto(20, 160)
tl.pendown()
tl.dot(25)
# 画嘴巴
tl.penup()
tl.goto(-30, 130)
tl.pendown()
tl.right(90)
tl.circle(30, 180)
# 画身体
tl.penup()
tl.goto(0, 0)
tl.pendown()
tl.right(90)
tl.forward(150)
tl.right(90)
tl.forward(100)
tl.right(90)
tl.forward(150)
tl.right(90)
tl.forward(100)
# 设置字体颜色
tl.color("red")
# 写祝福话语
tl.penup()
tl.goto(0, -50)
tl.pendown()
tl.write("Hello, Conan!", align="center", font=("Arial", 16, "normal"))
# 设置字体颜色
tl.color("blue")
# 写祝福话语
tl.penup()
tl.goto(0, -80)
tl.pendown()
tl.write("Happy Drawing!", align="center", font=("Arial", 16, "normal"))
# 程序暂停2.5秒后自动关闭
tl.done()
```
运行上述代码,即可在窗口中看到画出的柯南图案。
阅读全文