I am Making A program for malking a phonebook.
for that i am storing a list in dictionary.
Like this:
phbuk={}
def add():
a=raw_input('Name :')
b=raw_input('Email :')
c=raw_input('Mobile :')
name=[a,b,c]
d=len(phbuk)
phbuk[d+1]=name
Now if i want to delete a particular record just by giving name then how can i do it.
Actually I am not able to understand how to access the values of list,which are the values of this "phbuk" dictionary so that i can perform a search and delete the required record.