65 lines
892 B
Python
65 lines
892 B
Python
|
import turtle
|
||
|
t=turtle.Turtle()
|
||
|
t.speed(0)
|
||
|
t.penup()
|
||
|
t.goto(0,-100)
|
||
|
t.color("blue","blue")
|
||
|
t.pendown()
|
||
|
t.begin_fill()
|
||
|
t.circle(100)
|
||
|
t.end_fill()
|
||
|
t.penup()
|
||
|
t.goto(0,-95)
|
||
|
t.color("white","white")
|
||
|
t.pendown()
|
||
|
t.begin_fill()
|
||
|
t.circle(80)
|
||
|
t.end_fill()
|
||
|
t.penup()
|
||
|
t.goto(-25,45)
|
||
|
t.pendown()
|
||
|
t.begin_fill()
|
||
|
t.circle(20)
|
||
|
t.end_fill()
|
||
|
t.penup()
|
||
|
t.goto(25,45)
|
||
|
t.pendown()
|
||
|
t.begin_fill()
|
||
|
t.circle(20)
|
||
|
t.end_fill()
|
||
|
t.penup()
|
||
|
t.goto(-20,60)
|
||
|
t.color("black","black")
|
||
|
t.pendown()
|
||
|
t.begin_fill()
|
||
|
t.circle(10)
|
||
|
t.end_fill()
|
||
|
t.penup()
|
||
|
t.goto(20,60)
|
||
|
t.pendown()
|
||
|
t.begin_fill()
|
||
|
t.circle(10)
|
||
|
t.end_fill()
|
||
|
t.penup()
|
||
|
t.goto(0,10)
|
||
|
t.color("red","red")
|
||
|
t.pendown()
|
||
|
t.begin_fill()
|
||
|
t.circle(20)
|
||
|
t.end_fill()
|
||
|
t.penup()
|
||
|
t.goto(-45,-35)
|
||
|
t.begin_fill()
|
||
|
t.right(40)
|
||
|
t.pendown()
|
||
|
t.circle(80,90)
|
||
|
t.end_fill()
|
||
|
t.penup()
|
||
|
t.goto(-45,-35)
|
||
|
t.begin_fill()
|
||
|
t.seth(-90)
|
||
|
t.color("white","white")
|
||
|
t.pendown()
|
||
|
t.circle(80,40)
|
||
|
t.end_fill()
|