Task
Given names and phone numbers, assemble a phone book that maps friends' names to their respective phone numbers. You will then be given an unknown number of names to query your phone book for. For each queried, print the associated entry from your phone book on a new line in the form
name=phoneNumber
; if an entry for is not found, print Not found
instead.Code:
# Enter your code here. Read input from STDIN. Print output to STDOUT
n = int(input())
d = {}
for i in range(n):
x = input().split()
d[x[0]] = x[1]
while True:
try:
name = input()
if name in d:
print(name, "=", d[name], sep="")
else : print("Not found")
except: break