"ast" <[email protected]> a écrit dans le message de news:[email protected]...
Hellolst = [(1,2,3), (4, 5,6)] sum(lst, ())(1, 2, 3, 4, 5, 6) Any explanations ? thx
OK, sorry, I finally understand. This is because adding tuple (or list or string ...) is a concatenation () + (1,2,3) + (4, 5,6) (1,2,3,4,5,6) -- https://mail.python.org/mailman/listinfo/python-list
