Python
import turtle as t t.speed(0) t.dot(50,'red') t.penup() t.goto(0,-25) t.pendown() t.circle(25) #########################1hao t.penup() t.goto(0,50) t.pendown() t.dot(-50,'yellow') #########################2hao t.penup() t.goto(0,25) t.pendown() t.circle(25) ##########################3hao t.penup() t.goto(42,25) t.pendown() t.dot(50,'green') t.penup() t.goto(42,0) t.pendown() t.circle(25)