Contact book creation in python
Contact book is a collection of data which has the list of people name and contact details. It is an evergreen concept for file handling . It gets the user input, process it and display the contact. Let us create contact book. It has following activities · Add new contact · Save contacts to a file . · Search a contact · Display the contact details. · Delete a contact The python program to create a Contact Book : contactbook = {} def add_it(): c_name = input("Enter name: ") c_phone = input("Enter phone number: ") c_email = input("Enter email: ") contactbook[c_name] = {"phone Number": c_phone, "email id": c_email} print(f"{c_name} is a...