Forums
New posts
Search forums
Members
Current visitors
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Forums
Archive
Archive
Python
Concise idiom to initialize dictionaries
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
[QUOTE="Peter Otten, post: 1788932"] Here is a bunch of dictionaries that spring into existence by what is believed to be magic :-) .... def __getattr__(self, name): .... d = {} .... setattr(self, name, d) .... return d .... def __repr__(self): .... items = self.__dict__.items() .... items.sort() .... return "\n".join(map("%s -> %r".__mod__, items)) .... a -> {1: 99} b -> {2: 42, 3: 11} Peter [/QUOTE]
Verification
Post reply
Forums
Archive
Archive
Python
Concise idiom to initialize dictionaries
Top