0
請糾正我的代碼通過迭代在Python類變量
PS - 我是相當新的Python
class Contact:
def __init__(self,cid, email):
self.cid=cid
self.email=email
def ind(contacts):
index={}
#Code here
return index
contacts = [Contact(1,'a'),
Contact(2,'b'),
Contact(3,'c'),
Contact(4,'a')]
print(ind(contacts))
需要輸出到像 -
{'a':[1,4], 'b':2, 'c':3}