Python
1class AddressBook: 2 3 def __init__(self): 4 self.name_addr = [] 5 6 def insert(self,name, addr): 7 self.name_addr = self.name_addr + [[name, addr]] 8 9 def print_list(self): 10 for i in range(len(a.name_addr)): 11 print(a.name_addr[i][0]+" -> "+a.name_addr[i][1]) 12 13 def search(self,name): 14 for i in range(len(a.name_addr)): 15 print(i.name) 16 print(i[0]) 17 if i[0] == name: 18 return i[1] 19 return False 20 21 22loop = True 23a = AddressBook() 24a.insert('Hogetaro', 'Tokyo') 25a.print_list() 26while loop: 27 ip = int(input(' command? 0:add 1:search 2:print 3:quit -> ')) 28 if ip == 0: 29 name = input('name? ') 30 address = input('address? ') 31 a.insert(name, address) 32 elif ip == 1: 33 name = input('name? ') 34 address = a.search(name) 35 if address: 36 print('address : {}'.format(address)) 37 else: 38 print('not found') 39 elif ip == 2: 40 a.print_list() 41 elif ip == 3: 42 loop = False 43
とある授業のテストで解けなかった問題です。
名前を入力に受け取ってサーチする部分でエラーが出てしまいます。原因がわからず困っているので親切な方、よければ回答お願いします。以下ターミナルのipythonで実行したときのエラーです。
In [2]: exec(open('test_6_c.py').read()) Hogetaro -> Tokyo command? 0:add 1:search 2:print 3:quit -> 1 name? Hogetaro --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) <ipython-input-2-8a3e2e4bafcc> in <module>() ----> 1 exec(open('test_6_c.py').read()) <string> in <module>() <string> in search(self, name) AttributeError: 'int' object has no attribute 'name'
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/10/23 05:39