[Python] 纯文本查看 复制代码 import turtle as t
t.penup()
t.goto(-150, -50)
t.pendown()
t.fillcolor('green')
t.begin_fill()
t.circle(50)
t.end_fill()
t.penup()
t.goto(0, -50)
t.pendown()
t.fillcolor('yellow')
t.begin_fill()
t.circle(50)
t.end_fill()
t.penup()
t.goto(150, -50)
t.pendown()
t.fillcolor('red')
t.begin_fill()
t.circle(50)
t.end_fill()
t.done()
|