A simple Contact Book application built in Python to manage user details such as name, phonenumber and email. This project demonstrates two different programming approaches functional programming and ...
class ContactBook: def init(self): self.contacts = {} print("Welcome to the Contact Book!") def add_contact(self, name, phone, email): if not name or not phone: print ...
Some results have been hidden because they may be inaccessible to you
Show inaccessible results