Turtle.tracer の正確な使用法は何ですか? python docs にはTurn turtle animation on/off and set delay for update drawings.
、アニメーションを無効にするために使用すると書かれていますが、たとえばこのコードでは、turtle.trace を使用すると引数が明確ではありません。
import turtle
turtle.width(5)
yd=xd=-64
turtle.tracer(8,25)#This is the problem
for i in range(2):
turtle.up()
turtle.goto(-197.5,yd)
turtle.down()
turtle.seth(0)
turtle.fd(394)
yd+=128
turtle.up()
turtle.goto(xd,197.5)
turtle.down()
turtle.seth(270)
turtle.fd(394)
xd+=128