12.07.2015 Views

Is Python a

Is Python a

Is Python a

SHOW MORE
SHOW LESS
  • No tags were found...

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

# Database script to populate a shelve with <strong>Python</strong> objectsrec1 = {'name': {'first': 'Bob', 'last': 'Smith'},'job': ['dev', 'mgr'],'age': 40.5}rec2 = {'name': {'first': 'Sue', 'last': 'Jones'},'job': ['mgr'],'age': 35.0}import shelvedb = shelve.open('dbfile')db['bob'] = rec1db['sue'] = rec2db.close( )# Database script to print and update shelve created in prior scriptimport shelvedb = shelve.open('dbfile')for key in db:print key, '=>', db[key]bob = db['bob']bob['age'] += 1db['bob'] = bobdb.close( )680 | Appendix B: Solutions to End-of-Part Exercises

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

Saved successfully!

Ooh no, something went wrong!