"""python simple turtle graphics example with screen object and new instance of turtle named chinese_loong。 you can move turtle with arrow keys。 Python简单的海龟画图示例程序。本程序会新建屏幕对象,并且实例化一个海龟名叫中国龙。你可以通过按上下左右方向箭头操作海龟移动。 """ import turtle def mo...
"""turtle.begin_fill()#开始填充turtle.seth(0) turtle.seth(angle)#设置画笔方向turtle.circle(-r, 180)#逆时针画半圆turtle.fd(2 * r)#向前移动turtle.begin_poly()#记录画笔的位置x, y = turtle.get_poly()[0]#获取画笔的位置turtle.right(90)#逆时针旋转画笔turtle.fd(2 * r)#向前移动turtle.c...