import turtle as t
# 绘制第一个气球
t.color('pink')
t.begin_fill()
t.circle(100)
t.end_fill()
t.dot(20)
t.right(90)
t.forward(200)
# 绘制第二个气球
t.penup()
t.goto(150,200)
t.down()
t.left(90)
t.color('purple')
t.begin_fill()
t.circle(80)
t.end_fill()
t.dot(20)
t.right(90)
t.forward(120)
t.hideturtle()