Getting a list value from key/value pair

Kayode Odeyemi dreyemi at gmail.com
Sun Sep 18 05:39:03 EDT 2011


Hi all,

If I have a list with key/value pair, how do I get the value of the key?

I'm working with this code snippet:

>>> items = {'fees':[('status','pending'), ('timeout',60)],
'hostel':[('status',
 'pending'), ('timeout','120')]}
>>> print [items[i] for i in items.keys()]
[[('status', 'pending'), ('timeout', '120')], [('status', 'pending'),
('timeout'
, 60)]]
>>>

-- 
Odeyemi 'Kayode O.
http://www.sinati.com. t: @charyorde
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/python-list/attachments/20110918/cba28d79/attachment.html>


More information about the Python-list mailing list