I have always thought that functional programming can be done in Python. Thus, I was surprised that Python didn't get much of a mention in this question, and when it was mentioned, it normally wasn't very positive. However, not many reasons were given for this (lack of pattern matching and algebraic data types were mentioned). So my question is: why isn't Python very good for functional programming? Are there more reasons than its lack of pattern matching and algebraic data types? Or are these concepts so important to functional programming that a language that doesn't support them can only be classed as a second rate functional programming language? (Keep in mind that my experience with functional programming is quite limited.)
|
The question you reference asks which languages promote both OO and functional programming. Python does not promote functional programming even though it works fairly well. The best argument against functional programming in Python is that imperative/OO use cases are carefully considered by Guido, while functional programming use cases are not. When I write imperative Python, it's one of the prettiest languages I know. When I write functional Python, it becomes as ugly and unpleasant as your average language that doesn't have a BDFL. Which is not to say that it's bad, just that you have to work harder than you would if you switched to a language that promotes functional programming or switched to writing OO Python. Here are the functional things I miss in Python:
|
|||||||||||
|
|
Guido has a good explanation of this here. Here's the most relevant part:
I pull two things out of this:
|
|||||||||||||
|
|
Scheme doesn't have algebraic data types or pattern matching but it's certainly a functional language. Annoying things about Python from a functional programming perspective:
On the other hand, python has lexical closures, Lambdas, and list comprehensions (which are really a "functional" concept whether or not Guido admits it). I do plenty of "functional-style" programming in Python, but I'd hardly say it's ideal. |
|||||||||||||
|
|
Python is almost a functional language. It's "functional lite". It has extra features, so it isn't pure enough for some. It also lacks some features, so it isn't complete enough for some. The missing features are relatively easy to write. Check out posts like this on FP in Python. Check the answers to this question on functional programming languages. The comments are more informative than my lame answer. |
|||||
|
|
Let me demonstrate with a piece of code taken from an answer to a "functional" Python question on SO Python:
Haskell:
The main difference here is that Haskell's standard library has useful functions for functional programming: in this case |
|||||||||||||
|
|
I would never call Python “functional” but whenever I program in Python the code invariably ends up being almost purely functional. Admittedly, that's mainly due to the extremely nice list comprehension. So I wouldn't necessarily suggest Python as a functional programming language but I would suggest functional programming for anyone using Python. |
|||
|
|
|
Maybe this article will help clear it up: Functional programming in Python. |
||||
|
|
protected by bmargulies Sep 19 '12 at 1:56
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.