Blog
Python's timeless principles of good software
$ python -c 'import this' The Zen of Python, by Tim Peters Beautiful is better than ugly. Explicit is better than implicit. Simple is better than complex. Complex is better than …
Topic
3 matching pages
Blog
$ python -c 'import this' The Zen of Python, by Tim Peters Beautiful is better than ugly. Explicit is better than implicit. Simple is better than complex. Complex is better than …
Blog
Many languages encourage programmers to use a getter/setter pattern. Like this: instance.set_foo(value) print instance.get_foo() Many years ago, as a junior programmer still …
Blog
As a programmer I believe less is more. Good code is small, simple and elegant and many times favorable to larger, noisier code that does the same. It's not just about aesthetics …