I'm totally confused by this code: Code:
> a = None > b = None > c = None > d = None > x = [[a,b], > [c,d]] > e,f = x[1] > print e,f > c = 1 > d = 2 > print e,f > e = 1 > f = 2 > print c,d > > Output: None None > None None > 1 2 > I'm expecting the code as: > None None > 1 2 > 1 2 > > What's wrong? And this question made my GUI program totally out of control. Thanks[?]
<<338.gif>>
-- http://mail.python.org/mailman/listinfo/python-list