浏览完整代码 来源:helpercode.py 项目:LRBeaver/PythonGameDev_Trinket示例21def d(fill=False): '''draws a capital D''' turtle.setheading(0) if fill: bf() fd(20) circle(20, 90) fd(70) circle(20, 90) fd(20) lt(90) fd(110) lt(90) if fill: ef() pu() turtle.goto(turtle.xcor...