I've created a dict of objects (creditcards):
class CreditCard:
def __init__(self,number,expire_date_month,expire_date_year,CVC):
self.number=number
self.expire_date_month=expire_date_month
self.expire_date_year=expire_date_year
self.CVC=CVC
credit_cards={CreditCard('1000000000000000','3','2011','111'):'VISA'}
credit_cards_frozen=frozenset({CreditCard('1000000000000000','3','2011','111'):'VISA'})
but I have an error while executing these commands:
print credit_cards['VISA'] #KeyError: 'VISA'
print credit_cards_frozen['VISA'] #TypeError: 'frozenset' object is not subscriptable
What's wrong with my code?
credit_cards['VISA'], getting theCreditCard('1000000000000000','3','2011','111')object or allCreditCardobjects of typeVISA? – Oben Sonne Mar 2 '11 at 9:56frozenset()does not acceptdicts as arguments, but set and sequence-like object, i.e. you have to call `frozenset(adict.items()), but then you cannot use it like a dict anymore. Why do you need frozen version? – Oben Sonne Mar 2 '11 at 10:00