python error

30 Days Challenge 8일차 & python Error 정리
# Enter your code here. Read input from STDIN. Print output to STDOUT phone = {} inputn = [] t = int(input()) i = 0 while i < t: a, b = list(map(str, input().rstrip().split())) phone[a] = b i += 1 for _ in range(0, t): inputn.append(str(input())) for outputn in inputn: if outputn in phone: print("{}={}".format(outputn, str(phone[outputn]))) else: print('Not found') 이렇게 작성하여 실행은 되었으나, 처음에 입력받은 t가..