史迪仔python代码
时间: 2023-11-08 15:01:18 浏览: 243
史迪仔.py
史迪仔的Python代码如下:
```python
from turtle import *
import turtle as t
from random import *
# 设置背景色和速度
bgcolor('#ba161e')
t.speed(10)
# 绘制身体
t.pensize(20)
t.seth(-90)
t.fd(100)
t.pensize(1)
t.fillcolor('#ff2d00')
.begin_fill()
t.seth(0)
t.circle(50)
t.end_fill()
# 绘制眼睛
t.pensize(10)
t.penup()
t.goto(-15, 60)
t.pendown()
t.fillcolor('white')
t.begin_fill()
t.circle(10)
t.end_fill()
t.penup()
t.goto(15, 60)
t.pendown()
t.fillcolor('white')
t.begin_fill()
t.circle(10)
t.end_fill()
# 绘制嘴巴
t.penup()
t.goto(-25, 40)
t.pendown()
t.seth(-90)
t.circle(25, 180)
t.fillcolor('#ba161e')
t.begin_fill()
t.seth(0)
t.fd(50)
t.seth(90)
t.circle(25, 180)
t.end_fill()
# 绘制手
t.penup()
t.goto(-50, -10)
t.pendown()
t.seth(-30)
t.fd(60)
t.penup()
t.goto(-50, -10)
t.pendown()
.seth(-150)
t.fd(60)
# 绘制脚
t.penup()
t.goto(-35, -70)
t.pendown()
t.seth(-30)
t.fd(70)
t.penup()
t.goto(-35, -70)
t.pendown()
t.seth(-150)
t.fd(70)
# 隐藏画笔
t.hideturtle()
t.done()
```
阅读全文