I am sorry but i already made changes in the script so that I can use it in tkinter..
However I am caught up in another problem :-
a=[12, 13, 14]
b=[(12, 13), (13, 14)]
I want to say remove the values stored in b[0] to be removed from 'a'. With this I am gonna complete my program so...this is the final step..
cheers
how can I do it?
(I tried directly removing by a.remove(), but it didn't ..probably because it identifies (12, 13) as 1 element, but still ...help me out)