tuples from lists

Adonis adonisv at earthlink.net
Sun Mar 9 20:21:17 EST 2003


"Bob Roberts" <bobnotbob at byu.edu> wrote in message
news:c4e6b17d.0303091212.4fee8ea9 at posting.google.com...
> I have a list of lists of lists.  How can I turn that into a tuple of
> tuples of tuples?

>>> x = [[1,2,3],[4,5,6],[7,8,9]]
>>> tuple([tuple(y) for y in x])
((1, 2, 3), (4, 5, 6), (7, 8, 9))






More information about the Python-list mailing list