On Tue, Sep 28, 2010 at 11:55 AM, Toto <emays...@gmail.com> wrote:
> Hello,
>
> I have a list of list
> assume myList[x][y] is integer
> I would like to create an alias to that list which I could call this
> way:
> alias[y][x] returns myList[x][y]

If your "alias" can be read-only:
alias = zip(*myList)

Cheers,
Chris
--
http://blog.rebertia.com
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to