.. . .. . .
59 f.close()
60 print \61 break
62 elif operation == \
63 name = raw_input(\64 if name in contacts: 65 del contacts[name] 66 f = file(data, \
67 cPickle.dump(contacts, f) 68 f.close()
69 print \70 else:
71 print \72 elif operation == \73 while True:
74 name = raw_input(\75 if name == \76 break
77 if not name in contacts:
78 print \79 continue 80 else:
81 phone = raw_input(\82 mail = raw_input(\
83 contacts[name].Update(name, phone, mail) 84 f = file(data, \
85 cPickle.dump(contacts, f) 86 f.close()
87 print \88 break
89 elif operation == \
90 name = raw_input(\91 if name in contacts:
92 contacts[name].display() 93 else:
94 print \95 elif operation == \
96 for name, contact in contacts.items(): 97 contact.display() 98 else:
99 print \
S. . . . . ..