bug

from turtle import *

def draw(radius,color1,color2)
width(3)
color("black",color1)
begin_fill()
circle(radius/2,80)
circle(radius,180)
left(180)
circle(-radius/2,180)
end_fill()
left(90)
up()
forward(radius*0.35)
right(90)
down()
color(color2,color2)
begin_fill()
circle(radius*0.15)
end_fill()
left(90)
up()
backward(radius*0.35)
down()
left(90)
def main():
setup(500,500)
draw(200,"black","white")
draw(200,"white""black")
ht()
main()
mainnloop()
原文地址:https://www.cnblogs.com/kesz/p/10554536.html