标签:range down 第一个 end rtl done for size port
# PythonDraw.py
import turtle as t
t.setup(650, 350, 200, 200)
t.penup()
t.fd(-250)
t.pendown()
t.pensize(25)
t.pencolor("purple")
t.seth(-40)
for i in range(4):
t.circle(40, 80)
t.circle(-40, 80)
t.pencolor(‘black‘)
t.pencolor(‘red‘)
t.circle(40, 80 / 2)
t.fd(100)
t.circle(16, 180)
t.fd(300 * 2 / 3)
t.done()
标签:range down 第一个 end rtl done for size port
原文地址:https://www.cnblogs.com/Lynn123/p/11642826.html