I can't delete a canvas item from array, using object tag (string)
from Tkinter import *
if __name__=="__main__":
root=Tk()
cv=Canvas(root,bg="yellow",width=200,height=200)
cv.pack()
wCell=100
N=2
for col in range(N):
for row in range(N):
x=50+col*wCell
y=50+row*wCell
cc=str(row)+str(col)
print row,col,cc,type(cc)
R=50
coords=[x-R,y-R,x+R,y+R]
clr="cyan"
cv.create_oval(coords,fill=clr,tags=(cc,))
#this part does NOT respond. Why? Please help!
cv.delete((str(11),))
cv.update()
root.mainloop()