When I run the code as below, it returns attribute error.
AttributeError: 'Contact' object has no attribute 'find_info'
How should I fix this??
phonebook = {}
Contact = namedtuple('Contact', ['phone', 'email', 'address'])
def add_contact(phonebook):
name = input()
phone = input()
email = input()
address = input()
phonebook[name] = Contact(phone, email, address)
print('Contact {} with phone {}, email {}, and address {} has been added successfully!' .format(name, phonebook[name].phone, phonebook[name].email, phonebook[name].address))
num = 0
for i in phonebook.keys():
if i in phonebook.keys():
num += 1
print('You now have', num, 'contact(s) in your phonebook.')
def consult_contact(phonebook):
find_name = input('What is the name of the contact?\n')
find_info = input('What information do you need?\n')
if find_name not in phonebook:
print('Contact not found!')
else:
print(phonebook[find_name].find_info)
if __name__ == "__main__":
add_contact(phonebook)
consult_contact(phonebook)