Python beginner's mistakes |
:: Email ::
Download area
|
Every Python programmer had to learn the language at one time, and started out as a beginner. Beginners make mistakes. This article highlights a few common mistakes, including some I made myself. Beginner's mistakes are not Python's fault, nor the beginner's. They're merely a result of misunderstanding the language. However, there is a difference between misunderstanding (often subtle) language features, vs misunderstanding the language as a whole, and what can (and cannot) be done with it. The pitfalls article focused on the former; this article deals with the latter. To put it another way, the mistakes in this article are often cases of "the wrong tool for the job", rather than coding errors or sneaky language traps. Mistake 1: trying to do low-level operationsPython is sometimes described as a VHLL, a Very High-Level Language. As such, it is naturally suited for high-level tasks, like generating or parsing HTML pages, scripting a game engine, or writing web frameworks, to name a few examples. It is not so suitable for tasks typically done by low-level languages, like writing device drivers, or tasks where performance is critical, like rendering of 3D graphics, or serious number-crunching. This doesn't mean that it isn't possible to do these things with Python; but it's probably just not the right language for these jobs. One way to work around this is to write the low-level code in C, then have Python call it. Mistake 2: writing "language X" code in PythonThis is a mistake that is almost unavoidable. You come from, say, Pascal, and try your hand at Python. The first code you write will probably look like Pascal with a Python syntax. You are writing Pascal code in Python. Some notorious symptoms of "language X" code, and the languages that may cause them:
The point here is not to slam the language that you're used to (although that is always fun ;-). The point is to emphasize that good "language X" code and code practices cannot always be directly translated to Python. Mistake 3: trying to make Python fit the environment that you're used toThis one requires some clarification. When I learned Python, back in 1996-1997, I was used to using Turbo Pascal, in DOS. I often wrote programs that used "text graphics" consisting of characters (ASCII 0-255), in 16 colors, (ab)using the VGA card's capabilities. I was used to mixing code with inline assembler, and DOS interrupt calls, and talking to hardware directly (sound, video card, CD-ROM). It is obvious that Python was not the ideal language for these tasks in this environment. Yet I was interested in the language and wanted to use it. So, I tried to make the square peg fit in the round hole. Python couldn't do the things I wanted (or rather, considered "normal" or even "necessary" at the time), so I experimented. Drawing the text graphics using an ANSI driver, for example (very slow). Eventually I rolled my own Python, compiled with DJGPP (some readers might remember Python-DX; old executables are still available in the download area). I added modules for low-level DOS calls, interrupts, text graphics, etc. The problem with making your own version is, that hardly anybody else will use your (incompatible) flavor of Python. It's not necessarily wrong; but these days, there are better ways of extending Python, e.g. with libraries that can be loaded dynamically. Alas, this wasn't possible back in the DOS days (or if it was, I didn't know how :-). The lesson here is, that trying to make Python fit your existing environment, may or may not work. If it doesn't, Python probably isn't to blame. Either way, it's not the ideal way to get started. Mistake 4: "the obvious way" in language X, vs "the Python way"If you come from another language, then you often think of certain ways to do things as "obvious". For example, in Java, C, Pascal, etc, it is perfectly normal to loop over a string, in order to copy it or modify it. What could be more natural? You may also be used to concatenating strings with lots of Surprise: these constructs do not necessarily work well in Python. Yes, you can loop over a string, concatenate the same way, and create linked lists. And these ways of doing it are not uncommon, especially the first two. But before doing like this, maybe it's good to check if there isn't a better way. For example:
Some advicePython is easy to learn, but it takes a while before you really grasp the implications of using a dynamic and very high level language. Dynamic languages allow for a different type of software design. People usually don't realize this immediately. So, use Python's strengths, rather than coding around them for irrational reasons, or using the language in situations where its benefits don't really shine. To name a few of these strengths:
Also, no matter how much I like Python, remember that it simply might not be the right language for the specific task you have in mind. There are still areas where other languages outshine Python. However, the number of areas where Python wouldn't be appropriate, has gradually been declining. Vanilla Python might not be enough, but Python + extension packages might.
|