"Wensui Liu" <[EMAIL PROTECTED]> wrote:

> I know dict['row1'] will always work. but it will only get 1 row out
> of the dict. is there anyway i can get multiple (>1) rows out of dict
> by directly refeencing them, something like dict[['row1', 'row2']].
> 
[d[x] for x in ('row1', 'row2')]
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to