what is pythonic

Solutions on MaxInterview for what is pythonic by the best coders in the world

showing results for - "what is pythonic"
Nelson
03 Oct 2016
1well... it mean doing things the "python way" but what is that?
21) Clear
32) Efficient
43) Credible
5
6			To ELABORATE.... (hey...two outta three ain't bad)
7                  
8Beautiful is better than ugly.
9Explicit is better than implicit.
10Simple is better than complex.
11Complex is better than complicated.
12Flat is better than nested.
13Sparse is better than dense.
14Readability counts.
15Special cases aren't special enough to break the rules.
16Although practicality beats purity.
17Errors should never pass silently.
18Unless explicitly silenced.
19In the face of ambiguity, refuse the temptation to guess.
20There should be one-- and preferably only one --obvious way to do it.
21Although that way may not be obvious at first unless you're Dutch.
22Now is better than never.
23Although never is often better than *right* now.
24If the implementation is hard to explain, it's a bad idea.
25If the implementation is easy to explain, it may be a good idea.
26Namespaces are one honking great idea -- let's do more of those!