Comment on Python bug: Can assign [] = (), but not () = []parentComments−masklinn11yThe second line doesn't do anything though, since you already reassigned True to False it's like assigning False to False.You could write (False, True) = (True, False) though.
Comments
The second line doesn't do anything though, since you already reassigned True to False it's like assigning False to False.
You could write (False, True) = (True, False) though.