vote up 7 vote down star
3

exact duplicate: http://stackoverflow.com/questions/58968/what-defines-pythonian-or-pythonic

I have no python experience at all. Help me to understand this term. Please provide code examples and explanations as to what makes a particular sample "pythonic" and why.

flag

Duplicate: stackoverflow.com/questions/58968/… – dF Jan 17 at 21:27
I agree that this is a duplicate, however given the number of answers and the number of upvotes it does seem a shame to close it. In my defence the other question didn't come up in the list of similar questions when I was typing it in – 1800 INFORMATION Jan 18 at 8:26

6 Answers

vote up 27 vote down check
$ python
Python 2.5.3 (r253:67856, Dec 19 2008, 16:52:52) 
[GCC 4.0.1 (Apple Computer, Inc. build 5363)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> 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 complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than *right* now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!
link|flag
I was going to post this. Good easter egg of sorts in Python. – Alex Jan 17 at 20:57
The perfect answer. – Brian Clapper Jan 17 at 21:24
1  
Although these principles apply to many languages, not just Python. – JW Jan 18 at 7:54
does it remind a little bit prolog? – pablito Jan 18 at 8:28
didn't get it... – Paulo May 6 at 3:03
vote up 4 vote down

There's one thing that newer python programmers seem to have difficulty coming to terms with: duck typing. Duck typing isn't quite the same thing as dynamic typing. For example, suppose I have an object x that I want to do something with. Many developers coming from statically typed languages will be tempted to do this:

if isinstance(x, someclass):
    x.somemethod()
else:
    print "an error has occurred!"

The problem with this code is that Python has no concept of interfaces. So if you want to create an object that can pose as an instance of someclass without directly inheriting it, you're SOL. You can also do this:

if hasattr(x, somemethod):
    x.somemethod()
else:
    print "an error has occurred!"

But this can be tricky because python's dynamic typing can allow you to call a method even if it's not explicitly set to an attribute (see getattribute for more info).

There's an alternative way though:

try:
    x.somemethod()
except AttributeError:
    print "an error has occurred!"

Though this use of exceptions will probably horrify the .net programmers out there, this is the most pythonic way to do the code. It also just so happens to be the only way that you can be 100% sure that x has or doesn't have a somemethod method.

link|flag
It is also a pain for the IronPython developers to deal with since exceptions on the CLR are expensive, unoptimised routines which can be slow. – BrianLy Jan 17 at 22:08
this bare except is really ugly, you should use: except AttributeError: – nosklo Jan 18 at 4:21
I changed the catch-all except: statement to only catch AttributeError, since it's generally considered bad to accidently catch errors you're not properly handling – dbr Jan 18 at 8:15
Thanks for fixing that. – Jason Baker Jan 18 at 15:16
vote up 3 vote down

See this: http://faassen.n--tree.net/blog/view/weblog/2005/08/06/0

link|flag
vote up 2 vote down

I'd say Pythonic is another word for idiomatic Python usage

link|flag
vote up 2 vote down

It is an inverse measurement for the amount of flak you will take when posting python code to a widely read public forum. In other words, the less pythonic the more flak.

link|flag
vote up 2 vote down

See PEP ("Python Enhancement Proposal") 8 and Code Like a Pythonista for some recommendations to make your Python code look idiomatic (Pythonic). They include formatting recommendations, naming conventions, and code idioms.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.