class Contact: all_contacts = list() def __init__(self, name, email): self.name = name self.email = email Contact.all_contacts.append