We need to know what was listed :)!
Answer
Explanation:
There should be more context to this question but I would say there is a variety of things that could be seen as communication equipment, such as email, telephone, voice message, through mail.
I are the right answer I think
Answer:
Explanation:
The following code is written in Python and creates the function as requested in the question...
def phone2address(phonebook, addressBook, friendName):
phoneNumber = phonebook.get(friendName)
address = addressBook.get(phoneNumber)
return address
The function uses the dictionary (phonebook) to look for the friendName input as the key and then saves the phone number attached to that name in a variable called phoneNumber. Then we use that variable to search the addressBook dictionary to find the associated address and save it to the address variable. Finally, we return that address.
A set because sets do not allow duplicated elements