P1 第一单元 class03:阳光微笑

import turtle
t=turtle.Turtle()
t.shape=turtle
t.speed(2)
t.color('yellow')
t.penup()
t.goto(-80,90)
t.pendown()
t.begin_fill()
t.circle(22)
t.end_fill()
t.color('yellow')
t.penup()
t.goto(80,90)
t.pendown()
t.begin_fill()
t.circle(22)
t.end_fill()
t.penup()
t.goto(0,70)
t.pendown()
t.color('brown')
t.begin_fill()
t.circle(-50,steps=3)
t.end_fill()
t.penup()
t.goto(0,-120)
t.pendown()
t.pensize(6)
t.color('blue')
t.circle(165)
t.penup()
t.goto(50,-50)
t.pendown()
t.right(90)
t.color('red')
t.pensize(7)
t.circle(-50,180)

猜你喜欢

转载自www.cnblogs.com/haishangmingdeng/p/11312154.html
今日推荐