根据python 学习的知识来用turtle 裤画一个药丸的书写代码,代码长度至少30行。
from turtle import *
fillcolor('blue')
begin_fill()
pu()
fd(50)
pd()
lt(90)
fd(100)
circle(50,180)
fd(100)
lt(90)
fd(100)
end_fill()
fillcolor('white')
begin_fill()
rt(90)
fd(100)
circle(-50,180)
fd(100)
rt(90)
fd(100)
end_fill()
done()