18.11.2014 Views

Zelle - Chapter 11.pdf - CTools

Zelle - Chapter 11.pdf - CTools

Zelle - Chapter 11.pdf - CTools

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Retrieving lists of Keys and Values<br />

• You can get a list of keys, values or items (both) from a dictionary<br />

>>> jjj = { 'chuck' : 1 , 'fred' : 42, 'jan': 100}<br />

>>> print jjj.keys()<br />

['jan', 'chuck', 'fred']<br />

>>> print jjj.values()<br />

[100, 1, 42]<br />

>>> print jjj.items()<br />

[('jan', 100), ('chuck', 1), ('fred', 42)]<br />

>>>

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!