vote up 25 vote down star
10

I want to begin to learn Python, and I've seen that phrase come up here before, but I don't know exactly what it means. I've read some websites on Python scripting, but I don't recall ever seeing that (but I could have just glanced over it).

What exactly makes something "pythonian" or "pythonic"?

flag

1  
This question is not subjective. The terms "pythonian" and "pythonic" must have definitions that someone will provide. – Thomas Owens Sep 12 '08 at 13:41

10 Answers

vote up 31 vote down check

Pythonic means a program conforms to the idioms of the Python programming language. Every language has it's own particular idiom (as Jeff said, you can write FORTRAN in any language), but Python has a particularly strong idiom built around the idea that, "there should be one—and preferably only one—obvious way to do it". Perhaps more than most languages, Python has structures and tools that make programs much cleaner and easier to write when you use Python idioms, hence, all the interest in things being Pythonic.

link|flag
Ah, so it's just following the Python idioms. I thought it might be something deeper than that, but I guess not. Thanks. – Thomas Owens Sep 12 '08 at 13:43
vote up 42 vote down
$ python
Python 2.5.1 (r251:54863, May 18 2007, 16:56:43)
[GCC 3.4.4 (cygming special, gdc 0.12, using dmd 0.125)] on cygwin
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!

Hope that helps.

link|flag
Thanks, you beat me to it... ;) – mmattax Sep 12 '08 at 13:44
That is precisely what I was going to wrte :-) – Bartosz Radaczyński Sep 12 '08 at 14:26
Have you seen the source code for "this" ? Simply brilliant!!! – theman_on_vista Dec 19 '08 at 14:28
@therman: I cannot decide if it is beautiful or evil! – grieve Apr 17 at 21:48
3  
Source of "this": svn.python.org/view/python/… (Hey, it's the web! You can link to stuff!) – hopla Jun 16 at 13:29
vote up 8 vote down

in a python interpreter you can type this:


import this

which is a sort of "easter egg" that will spell out some of the python ideals...

link|flag
It's a real shame you missed some of those many up votes for the previous answer! You should have gotten at least a third of them IMHO :) – Wayne Koorts Jan 18 at 14:23
Hahaha. I didn't know that you can actually do that. – jpartogi Jul 23 at 10:06
vote up 2 vote down

Here are a couple of pages that I have found to help. Code Like a Pythonista and something similar in a slideshow format.

link|flag
vote up 1 vote down

The answers here are good, but it should also be noted that, since the definition is rather elastic, plenty of people will use "pythonic" to mean "the style I prefer". More heat than light has been generated in discussions over what style is "more pythonic", in my experience.

link|flag
vote up 0 vote down

Python best practices -- examples of pythonic code (along the line with Code Like a Pythonista).

link|flag
vote up 6 vote down

You may also wish to read PEP 8 (Style Guide for Python Code), which isn't exactly about what's pythonic ("pythonic" is higher level than style), but is along the same lines.

link|flag
vote up 2 vote down

Isn't it the opposite of TIMTOWTDI ?

link|flag
Answering a question with a question? – jpartogi Jul 23 at 10:06
Yes - but please look up the definition of recursion :-) – Dominic Cronin Jul 27 at 14:06
vote up 2 vote down

Guido van Rossum (the inventor of Python) is writing a blog on the history of Python, and the second article is about the philosophy.

link|flag
vote up 0 vote down

Pythonic for me means a programming language feature or syntax that is very concise, elegant, powerful and obvious to use. Meaning it always does what you expect it to and does not trip you up (ever).

Not all Python stuff is "pythonic", but because the language's features generally reflect this ideal, the adjective "pythonic" has come to stand for such.

link|flag

Your Answer

Get an OpenID
or

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