我在调用函数时遇到问题。这是一个示例调用:
def polyline(t,n,length,angle):
"""Draws n line segments with the given length and
angle(in degrees) between them. t is a turtle.
"""
for i in range(n):
t.fd(length)
t.lt(angle)
相关的调用就像
alex=turtle.Turtle()
polyline(alex,5,100,90)
我已经导入了turtle,但出现以下错误:
TclError: invalid command name ".!canvas"
我错过了什么?
烙印99
相关分类