vote up 43 vote down star
21

I've heard from reliable sources that Python is a great language that every programmer can learn, but I've heard so much good about it that I'm clearly not getting the whole picture. I'm considering spending more time to learn it, and I've heard more than I need about its virtues (to the point where I've started recommending it having never really used it), so I want to know its drawbacks, flaws, issues, and every single minor point of irritation you've ever had (preferably with explanations readable to one who doesn't program Python, such as with an example in another language).

Convince me not to try it out.

flag
show 6 more comments

39 Answers

1 2 next
vote up 35 vote down check

The problem is that it is not as good as it is made out to be, in other words it suffers from a degree of hype. I'll try to argue this point.

Potential detractors of the language usually lack the experience to criticize it authoratively. This is more true for python as it is not (yet) common that people are coerced (by work,school) into learning and working with the language. So the detractors are few and drowned out by the vocal supporters.

The top answer cites 'indentation' and then says but its not an issue for him, this is a strawman argument 'this is the worst problem and its not really a problem'. Indentation is a matter of taste and is more noticeable than bad. This answer has been voted up presumably by people who like the language, because it certainly does not answer the question, which is give a good reason not to use the language.

Python is open source, and community driven from the beginning, attributes which give it support amongst people such as vocal blogger-developers (not necessarily the people who get the most done) who are credible proponents. Compare to java or C# whose main proponents have a commercial interest and as such have such devalued words that they can't credibly make any positive assertions about their products, and being commercial there are any number of detractors.

People often say google use it a lot, the 'language of google', so it must be good. Now I suspect google use it a lot, but probably mainly for scripting and web programming. Remembering that

  • as a replacement for shell scripting (truely awful for significant development) python is infinitely better
  • web development and even the frameworks are not that complex

My experience is that dynamic languages are less maintainable, and not very good for 'systems' programming and dealing with complexity. The evidence is in the lack of sophisticated and successful programs. For example eclipse and its brethren. I am not convinced that it is feasible to create as sophisticated a framework in a dynamic language (if so, which ones?). Here checkable interfaces are an indispensable part of a self documenting, yet organically grown module structure.

Another example might be games. I think performance is an issue, but its also maintainability.

So the main issue for me is the dynamic typing, cited as a feature, but in reality just a really easy way to implement a language (I maintain a JS interpreter). Its definitely good for scripting, but if you could have type inference you would.

static typing is meta information, its like html vs. plain text, and when you've used a decent specialist IDE (eclipse, netbeans, vs.net - not emacs which is general) you will appreciate this, as you will be able to navigate your code, see compile errors immediately. Combined these are a massive productivity gain, albeit with an extra learning curve, that is completely unavailble in python.

I am far from an expert at python, but I have done a couple of semi-serious projects in the language and will try to recall specifically what I didn't like, aside from the general to all popular dynamic scripting languages weakness, the of lacking any static typing (not necessarily mutually exclusive with duck typing).

  • save on typing library naming mentality, I personally think the fully qualified (com.sun.xxx) package names are a good thing, as they contain a lot of information. Spending time typing them is not an issue for most java/c# developers. This makes it harder to know the provenance of code, and causes name space clashes
  • installation mentality, python has inherited the idea that libraries should be installed, so it infact is designed to work inside unix package management, which basically contains a fair amount of baggage (library version issues) and reduced portability. Of course it must be possible to package libraries with your application, but its not conventional.
  • quite quirky e.g. __init__
  • doesn't perform all that well
  • no switch (why not??)
  • poor utf support
  • no outstanding feature (that I know of). closures and duck typing (all objects are hashes) are just dynamic language bread and butter.

Lack of static typing results in

  • reduced maintainability, different developers will find it harder to work with each others code -> reduced productivity as projects scale*
  • less informative api documentation/autodocs
  • much less powerful ide support

*I feel these assertions are confirmed by looking at what complex projects are out there.

At the end of the day I wouldn't consider it for more significant/complex projects, however by all means learn it, but you may be disappointed if you have exagerated expectations of how good python is.

link|flag
3  
This answer really nails it for me, having worked with several languages on large projects, including Python). It's a great language for whipping up small apps, but I concur that it quickly becomes less productive for more complex/large apps for all the reasons mentioned above (I find Ruby has similar issues too). My least favorite Python quirk has to be the way division is implemented... – Rob Apr 30 at 21:26
1  
I love python but it was a please for me to give this its 25th upvote because it is a GREAT answer. – theycallmemorty Sep 17 at 15:27
show 5 more comments
vote up 36 vote down

The main implementation uses a GIL (global interpreter lock), which means that you cannot fully utilize your CPUs with Python threads, because threads serialize on object access.

This is a feature of the implementation, not the language, so you can get around that by using Jython, IronPython or maybe some other implementation (something PyPy based maybe?).

Also, support for process-based parallel processing is getting better and better in Python, so the GIL issue gets somewhat less important.

link|flag
show 2 more comments
vote up 34 vote down

One anti-python school of thought is that forcing style such as indentation is wrong. However, as I cannot convince myself, I guess I would fail at convincing you.

link|flag
5  
I've heard plenty of arguments about how wrong it is. I personally really like it because, for once, at least everyones indentation styles match. I count it as a positive feature personally. – Dan Dec 16 '08 at 17:35
2  
@Luis - The Python Style Guide highly recommends spaces over tabs. Mostly a push to coding by convention. But whatever you do, just don't mix spaces and tabs. – jonyamo Dec 17 '08 at 2:37
show 13 more comments
vote up 25 vote down

Python can be called slow.

By slow, I mean slower than C and slower than Java with a JiT run-time.

On balance, this rarely matters.

link|flag
show 8 more comments
vote up 23 vote down

Another point to make: Python is a difficult language to write good editors for. There are just too many backdoors and roundabout ways to do things to make features like Intellisense or syntax error highlighting. There are some tools that do make reasonably good attempts at this stuff, but it's definitely not what you're going to be used to if you use a language like Java or C#.

link|flag
1  
And like other reasonable scripting languages, somehow it doesn't really seem to matter much. Which continues to surprise me. – Mike Woodhouse Dec 17 '08 at 14:46
3  
intellisense is silly, and i think no reason to limit language flexibility. the code should be hit anyway unless you're coding standard is to distribute untested functionality. – gatoatigrado Mar 31 at 20:12
show 2 more comments
vote up 21 vote down

Python does not require variables to be declared in the scope they're in. Or indeed, anywhere. Therefore, it can't check this at compile-time.

This is bad - even Perl (with "use strict") or VB (with "Option Explicit") do this.

This means that the compiler cannot even detect a trivial typo- it will produce a working program anyway which will continue working until it reaches the typo - THEN go boom. It would be a lot nicer to require variables to be declared, then the compiler could detect this and complain upfront.

Worse still, in some circumstances, failing to define a variable in a given scope (for instance, because it was defined with a typo) causes it to be picked up out of a higher scope - even if this wasn't what the programmer intended - again because variables don't need to be declared.

If this is confusing to you, note that I have used the terms "delcare" and "define" as accurately as possible.

link|flag
1  
In practice, I have never once found that a bug was caused because something couldn't be type checked statically. The duck typing paradigm works exceptionally well, IMHO. Then again, I often find myself coding in the interactive shell and then pasting working tested code into my main program. – Dan Dec 16 '08 at 17:39
2  
I found something like PyFlakes, PyChecker, or PyLint will help you find your typos. – projecktzero Dec 16 '08 at 21:30
1  
++ The biggest problems I've had with python have all related to the typing. The worst is building a data structure with lists or dictionaries: a simple typo and your program explodes. A defined structure would be a lot safer. You can do this with classes, but with more work than C would require. – Harvey Dec 22 '08 at 18:10
show 3 more comments
vote up 11 vote down

It has a lot of WTFs:

print x   # does one thing
print x,  # does another

x = "hello everybody"
s = x.split(" ")  # does what you would expect
y = s.join(" ")   # does NOT do what you would expect

import re
x = "The sky is red"
r = re.compile("red")
x.sub(r, "blue")  # oops, that causes an error
r.sub(x, "blue")  # there, that should do it
print x           # prints "The sky is red" -- what!?
y = r.sub(x, "blue")  # maybe that will do it
print y               # nope, now it just prints "blue"

referrer = "http://foobar.com"
if override():
    referer = "overridden"
print "Referrer: " + referrer
# Do you see the bug?
# There was a typo in a variable name.
# No warning. No error.
# Because you can't enforce variable predeclaration.
link|flag
show 4 more comments
vote up 8 vote down

sometimes I get lost trying to figure out where variables are coming from, because you don't have to declare them. I guess experienced Pythonistas don't have the habit of scanning a function's variable definitions to determine what's going on.

link|flag
3  
If the block of code is short enough, there's no mystery. If it's so long that there's confusion. Well, that says it's too complex and needs to be broken up into pieces you can read and understand. – S.Lott Dec 16 '08 at 18:01
vote up 8 vote down

My biggest irritation with Python is the lack of an enum type. I know there are ways to emulate the functionality but I haven't found one that suits my sense of style.

link|flag
2  
actually I found that you don't really need enums, there's almost a pythonic way to solve things that you would use enums for in C. – hasen j Jan 10 at 19:08
show 1 more comment
vote up 8 vote down

I have some points in the answer to Five things you hate about your favorite language. There are a couple of others who have posted five of their own things about Python, too.

My favourite point is the one about accidentally permanently changing the default arguments to a function at runtime.

link|flag
vote up 6 vote down

Here are some points on Why to use it : http://www.amk.ca/python/howto/advocacy/

And this is about stupid people trying python: http://mail.python.org/pipermail/python-list/2003-February/190906.html

Have fun.

Either way, its programming and we all love it.

link|flag
vote up 5 vote down

I suppose the biggest (realistic) argument is python's dynamic typing, which can cause some needless errors if you're not careful. Of course this can be helped by good unit testing, but no matter what you do, there's always the possibility of typing errors that you wouldn't run into in a more statically typed language (Java/C#).

NOTE

One thing I see people saying is that you don't have to declare variables in Python. This is true in the strictest sense. You have to think differently about declarations though. For example, take the following code in a C like language:

int x = 0;

Think about it this way: why do you need the int keyword and the semicolon? Can't that be inferred? So just change the above to this:

x = 0

And use that format whenever you would declare a variable.

link|flag
show 6 more comments
vote up 5 vote down

There are lots of good reasons not to use Python, but they're all dependent on what you intend to use it for. The complaints about whitespace (oh, please) or duck typing or broken IntelliSense are (maybe) problems with the language, but they don't rise to the level of reasons not to use it.

Here are some actual circumstances in which you wouldn't want to use Python:

  • You're writing code for a piece of hardware that has only 64K of memory.
  • Your code has to manipulate very large matrices of integer values as fast as possible.
  • You're writing a web application that has to process extremely large numbers of hits, and your hosting provider doesn't support WSGI.

Those are, for the most part, not reasons not to use Python: they're reasons not to use the entire class of interpreted scripting languages that Python belongs to.

link|flag
1  
Shouldn't scipy handle large integer matrices just fine? – akaihola Jan 27 at 22:05
1  
not only scipy, but pycuda and cython's new buffer notation. – gatoatigrado Mar 31 at 20:06
show 1 more comment
vote up 4 vote down

Usually a language isn't good or bad by itself. The point is, is it the language to get your job done? If the answer is "maybe", spend some time trying it, and you'll discover.

link|flag
show 2 more comments
vote up 4 vote down

You must not use Python when (assuming Python is not your main language) :

  • You are in a rush and the languages you know will do the job.

  • You are looking for speed and have not time to create C extensions.

  • You want obfuscation.

  • Your code will be reused by people that you know, will not use Python and don't know it.

  • Quality is a main issue, therefor the language you master the best will be the best shot.

  • You know you will use features that have a better implementation in other language (I am looking at the FTP lib here...).

Anyway, Python pays my bill and am really happy about it.

link|flag
show 1 more comment
vote up 4 vote down
  1. Lack of static checking requires that section of code to be hit to find out there is a problem. Essentially this forces you to write unit tests.

For example, this code will run up until the dog() function is called:

def dog ():
  falkdfjlkdfj

print "Hello World\n"
dog()

2. Use of duck typing can lead to surprises to how variables are treated

link|flag
show 2 more comments
vote up 3 vote down

I'm only going to list negative things here, as that's what the OP asked for. Of course there are also many great things about Python :-)

  • Can't pass parameters by reference (The canonical example, you can't write a method that swaps the values of 2 parameters. You have to return a tuple instead).

  • Python 3 breaks backward compatibility

  • You can easily, accidentally, over-write system variables with anything else.

For example, type:

time.sleep = 4

instead of:

time.sleep(4)

and you just destroyed the system-wide sleep function with a trivial typo. Now consider accidentally assigning some method to time.sleep, and you won't even get a runtime error- just very hard to trace behavior. And sleep is only one example, it's just as easy to override ANYTHING.

  • Lacking support for interfaces, method requirements defined in terms of ambiguous "X-like-object". This is getting better with Python 3, but the new ideas in Python 3 will take a long time to catch on.

  • If you define 2 classes\methods with the same name at the same scope, the latter silently hides the former. This can lead to insane new classes of bugs. Speaking from experience here :-)

  • Explicit "self" is an annoyance.

  • Every object is automatically convertible to Boolean, and it is idiomatic to use this feature often, such as doing if(L), where L is actually a list and you're asking if it has items. Doing this in a low-level language like C is one thing, doing it in Python is... confusing. Is L a boolean? a list? a number? Why not just ask if L "has_items"?

link|flag
show 5 more comments
vote up 3 vote down

Sure. It will spoil you so hard that you will have a very miserable time if you have to go back to your previous language, be it Java or C# or something else. So don't do it! I warned you!

link|flag
show 2 more comments
vote up 1 vote down

You cannot be absolute when considering a language. Python isn't bad or good, it's just better or worse than other languages in some areas.

The Python community is big and active and the language is actively supported. You won't waste your time playing with it, especially because the time invested will not be lost when you learn to another.

I would maybe suggest to have a look at Ruby to see if you don't prefer Ruby over Python.

link|flag
vote up 1 vote down

Many subscribe to the school of thought that good language design means concise ways of describing the language. For example, Java is a language about Objects. Everything is either an Object or a blueprint for making an Object. In Scheme, everything is an expression which can be evaluated or passed to another function. In Python however, there are many different paradigms at work. To some, it seems to be a mish-mash of useful features thrown together with no unifying concept.

link|flag
vote up 1 vote down

I've seen one mention of this, but the thing that turned me off of Python is the part where indentation and white space matters.

I just could not get past the fact that your code (aside from white space) could be correct but just because of some small white space issue it does not work. Maybe if I stuck with it more it would be a non-issue but I know when learning it it drove me crazy and I ended up giving up.

At some point I opened my file in a different editor and something happened and I ended up having to re-indent everything. That was the point where I realized I'm not going to do that anymore.

I like indenting code but I don't like my code not working just because of white space.

Someone mentioned Ruby. I see Python and Ruby compared a lot. Because I didn't do so well with Python I tried Ruby and I like it. For me Ruby feels a lot more natural and somehow calm.

link|flag
2  
Guys.. Python does NOT care about whitespace. It does, however, enforce indentation. – Jeremy Michael Cantrell Dec 17 '08 at 15:23
show 6 more comments
vote up 1 vote down

Python's a nice language. I can think of only a few weak reasons not to try it:

  • Maybe you really, really hate objects?

  • Perhaps you will be one of those people who hates significant whitespace (I love significant whitespace).

  • It is a big system (language and libraries), so you will never master it completely.

  • Maybe you prefer to wait for Python 3.0 to become widespread before learning it?

As noted, these are all weak reasons :-)

link|flag
show 2 more comments
vote up 0 vote down

Python is popular and relatively easy to learn. Language comparisons can tend to get religious fairly quickly, but there's a few points worth making:

It's a dynamic language, and generally considered to be a scripting language. This means that it's less verbose than something like java.

It has functional constructs. Python was actually how I first became familiar with these concepts (lambdas, map & reduce functionality, etc, etc). If you've never worked functionally that's a nice way to transition easily into a different paradigm.

Duck typing.

A downside I've found is that the dynamic nature of the language makes it harder to build in the large, harder to keep track of larger-scale projects. Then again, maybe I haven't worked with it enough.

Partly because of these reasons, idiomatically written python tends to be simpler than typed/compiled languages, which can be a refreshing viewpoint, especially if you're coming from anything attached to the word "enterprise". As others have noted on this page, many of these same benefits are true of Ruby, which is also quite nice, and IMHO occupies the same language "niche".

link|flag
vote up 0 vote down

The best reason I can see someone not wanting to use python would be to demonstrate that they are Luddites.

link|flag
show 3 more comments
vote up 0 vote down

Good: The language is named after Monty Python

Bad: All the doc's are riddled with snakes (cute snakes)

Good: Stable with very large memory apps

Bad: Somewhat funky for web apps (see Zope)

Good: a lot of libraries to extend the capabilities

Bad: no solid IDE (do you love text editing? vim or emacs? so does python)

Good: Used by very large software houses (Google, etc)

Bad: Not common in the business world

TIP: Pick a basic programming assignment close to your target application and see how far you get towards a working app in 60 minutes using the web for docs. Was it good for you?

link|flag
show 1 more comment
vote up 0 vote down

Multithreading in Python is a big problem, due to GIL (global interpreter lock).

link|flag
vote up 0 vote down

The colons. Honestly. If the next line is indented from the current one, why do I need to use a colon as well? Drives me nuts.

To steal an example from another answer:

def dog ():
  falkdfjlkdfj

It's obvious (and necessary) from the indentation/white-space that the second line is part of the dog function.

Trivial, I know, but it really bothers me.

Oh, and I don't like the need to pass "self" as the first argument to a method within a class, but I understand that part's going to disappear in 3.0?

link|flag
show 6 more comments
vote up 0 vote down

I love Python but some things bug me after doing mostly C# development:

1)

try: 
    prase(getUserInput())
except: 
    print 'You entered an invalid number.'

Oops, my typo has become a runtime error, and I've hidden it with the try/except block. That wouldn't be a huge problem if my IDE caught this for me, but...

2) There's decent IDE support, but nothing I like nearly as much as Visual Studio with Resharper.

3) Generators feel like a half-assed version of LINQ.

4) Passing self everywhere makes writing objects feel like a hack.

5) When I go back to C# I forget to put parentheses around my conditionals.

Python is a beautiful language, and it's worth learning despite it's flaws.

link|flag
1  
You should never EVER use naked except! – fengshaun Mar 20 at 19:24
show 1 more comment
vote up 0 vote down

I think the only reason not to learn any language is if you know something similar, or you don't have enough time. In the free software world, I don't think there's anything quite like python (in that it has such a nice standard library, readability, extremely simple grammar -- esp. with 3.0, expressiveness, etc.).

While I don't advocate looking for reasons not to learn it, here are my bad experiences:

  • Python MT support is not as good as it should be.
    I tried to write a simple multi-threaded image loader, and found that I occasionally got fatal errors "GC object already tracked" as well as problems during interpreter shutdown, where the main thread would exit and modules would go as well even if other threads were using them. There's also the GIL, as others mentioned.

    Even if the language is still very useful, these issues (sans GIL, that's just annoyance, and Cython has a nogil construct) just makes the language not seem mature, which is a major issue of faith for me. Imagine Java not implementing the synchronized keyword correctly.
  • Garbage collection doesn't handle circular references.
    I want objects to be deleted when the main thread's locals() and globals() lose reference to the object. Occasionally this needs to happen at a certain point for correctness, not just efficiency (pycuda API calls for me). I would like [at least a per-class option] to have exceptions thrown on circular references [which don't use weakrefs] than have memory leaks and correctness issues.
  • Local and global scopes are unintuitive.
    Having variables leak after a for-loop can definitely be confusing. Make sure to name variables well! List constructs in Py3k operate within their own scopes. Worse, binding of loop indices can be very confusing; e.g. "for a in list: result.append(lambda: fcn(a))" probably won't do what you think it would.
  • It's not incredibly slow, but it doesn't have the latest-greatest optimizations in cPython (the default interpreter), like some of the dynamic optimization in the latest web browsers for Javascript. Learning Cython and C extensions takes time.
  • Imports are nice in that they're dynamic, but also haphazard
    Circular imports take some time to get right. I don't think practical code should be forced to be hierarchical: breaking things out into modules should be encouraged as much as possible.
link|flag
vote up 0 vote down

Cons

  1. Not as fast as C/C++, Java, or even PHP.
  2. Everything you write will be open source.
  3. No great IDE's. I'm using KATE to write Python.
  4. Somewhat annoying portability if you use non-standard modules.

Pros

  1. Very easy to write applications
  2. You don't have to worry about compiling.
  3. You can make great use of IDLE to test drive your solutions.
  4. Your applications will be very stable without any effort!
link|flag
show 1 more comment
1 2 next

Your Answer

Get an OpenID
or

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