我在下面有一些代碼在圓上繪製線條,但在每次迭代過程中不會刪除線條。有誰知道如何從窗口中刪除對象?在Python中從窗口中刪除一行Zelle Graphics
我試過win.delete(l)
但它沒有工作。謝謝。
import graphics
import math
win.setBackground("yellow")
x=0
y=0
x1=0
y1=0
P=graphics.Point(x,y)
r=150
win.setCoords(-250, -250, 250, 250)
for theta in range (360):
angle=math.radians(theta)
x1=r*math.cos(angle)
y1=r*math.sin(angle)
Q=graphics.Point(x1,y1)
l=graphics.Line(P,Q)
l.draw(win)