vote up 12 vote down star
3

I'm wondering specifically what experienced programmers thought when they started developing in Python. I'm sure the answer depends on your background, but my own personal answer is the conversion of basically anything in the language to a True/False value in boolean contexts.

Resulting in "oddities" like:

if x:

not meaning the same thing as:

if x == True:

I understand why, but it bugs me, and I certainly had to think about it a bit when I first ran into it.

flag

71% accept rate
In pretty much every language I can think of, if x is equivalent to if x != False. I'm not a Python guru, but that's been my impression of its conditionals as well. Am I missing something? – Chuck Jan 17 '09 at 8:34
Chuck, if x: can be very different depending on what x is. if it's False or None, it's False. If it's an empty list, tuple, dict, or string, it's False. Etc, etc. – Cody Brocious Jan 17 '09 at 8:36
Chuck, those are not equivalent in python. Make x = "". Then 'if x' is false and 'if x!=False' is true. The first one converts x to a bool and tests it, the second one negatively equates the empty string and False (which is true). See what I mean! – schickb Jan 17 '09 at 8:42
Wow, thanks for the noob clarification. I guess I'd never directly tested an empty object against false before and just assumed it was like PHP. – Chuck Jan 17 '09 at 8:55
I find that's "niceties" instead of "oddities" – chakrit Jan 17 '09 at 8:57
show 8 more comments

18 Answers

vote up 11 vote down

For me it's the unexpected behavior of scopes in some situations, for example:

>>> functions = [lambda x:x*multiplier for multiplier in range(10)]
>>> [f(10) for f in functions]
[90, 90, 90, 90, 90, 90, 90, 90, 90, 90]

This is not what I would expect at first sight. One possible correct version is as follows:

>>> def makemul(multiplier):
>>>    return lambda x:x*multiplier
>>> functions = [makemul(multiplier) for multiplier in range(10)]
>>> [f(10) for f in functions]
[0, 10, 20, 30, 40, 50, 60, 70, 80, 90]

Here's another:

>>> functions = [(lambda m: lambda x:x*m)(multiplier) for multiplier in range(10)]
>>> [f(10) for f in functions]
[0, 10, 20, 30, 40, 50, 60, 70, 80, 90]

Another fact that may come as a surprise is that default values for function parameters are assigned during the evaluation of the def statement, not during function calls. Here's an example (from "Python in a nutshell"):

def f(x, y=[]):
    y.append(x)
    return y
print f(23)    # prints [23]
print f(42)    # prints [23, 42] (!)

If you want to bind y to an empty list at each function call you must use a workaround:

def f(x, y=None):
    if y is None: y=[]
    y.append(x)
    return y
print f(23)    # prints [23]
print f(42)    # prints [42]
link|flag
This actually has nothing to do with lambda. Lambda binds references to variables in the current scope, so the behavior is due to the fact that your variable 'multiplier' is either being redefined (in the first example) or made anew (in the second) due to function scope. – Cody Brocious Jan 17 '09 at 8:48
Was using comprehensions to create lists of anonymous closures really an issue you hit as a newbie. You sure jumped in head first. :) – schickb Jan 17 '09 at 8:52
@schickb: Of course not. But at some point you learn that this kind of things exist and are cool. However, I still don't feel comfortable with this kind of scoping issues. – Federico Ramponi Jan 17 '09 at 8:56
The loop-doesn't-rebind-its-variable problem affects a bunch of other languages too, eg. JavaScript. It comes from C's handling of variables in loops, where you couldn't make a closure anyway. – bobince Jan 17 '09 at 10:31
I'be brief, the tutorial says: f = lambda x: x*m is syntactic sugar for: def f(x): return x*m That the body of a function is not executed until the function is called is a basic tenet of python so in each (lambda x: x*m) m is not to be evaluated, m is always a pointer to the loop variable, which still exists after the loop as the last bound value. – rgz May 30 at 9:34
vote up 10 vote down

Newbies might find the underscore conventions confusing. There are 4 conventions:

  1. __xyz__ => for magic stuff (defined by the language)
  2. __xyz => for private stuff in a class
  3. _xyz => for things you do not want to be imported with "from my_module import *"
  4. xyz_ => for variables whose name clash with a reserved keyword

I often forget an underscore here and there.

Here's an example to show all four conventions:

# module test_module.py
class _Foo:
    def __some_private_method(self):
        print "This is private!"
    def __str__(self): # a magic method (not private)
        return "This is pure magic."
    def register_class(class_): # use "class_" instead of "klass" or "clazz"
        print "Registering class",class_

>>> from test_module import *  # does not add _Foo to the current scope
>>> x = _Foo()  # nope!
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: name '_Foo' is not defined
>>> import test_module
>>> x = test_module._Foo() # ok!
>>> from test_module import _Foo # also works
>>> x = _Foo() # yep
>>> x.__some_private_method() # no, it's private!
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: _Foo instance has no attribute '__some_private_method'
>>> x._Foo__some_private_method() # it's actually just name-mangling
This is private!
>>> print x  # this calls magic method __str__
This is pure magic.
>>> x.register_class(dict)
Registering class <type 'dict'>
link|flag
vote up 9 vote down

A newbie might complain about having to type self everywhere in instance methods:

class Employee:
    def salary(self):
        return self.__salary
link|flag
I originally hated the idea of passing it in every time, but now I can't believe I lived so long in languages that don't do it that way. – Evan Fosmark Jan 18 '09 at 1:58
I still don't understand this. – _bravado Nov 9 at 12:56
vote up 7 vote down

As a newbie, I got mixed up with old-style and new-style classes. A lot of times I forgot to extend the object class, and some things did not work as I expected, for example properties don't work in old-style classes:

class Employee:  # forgot to extend object!
    def set_salary(self, salary):
        print "New salary:",salary
        self.__salary=salary
    def get_salary(self):
        print "Current salary:",self.__salary
        return self.__salary
    salary = property(get_salary, set_salary)

>>> john=Employee()
>>> john.salary=40000  # no display!

In this example, the set_salary method was not called. If you make the Employee class extend the object class, you get a new-style class, and everything works fine:

class Employee(object): # ok!
    #...   the rest is the same

>>> john=Employee()
>>> john.salary=50000
New salary: 50000
>>> x = john.salary
Current salary: 50000
link|flag
vote up 6 vote down

A newbie might wonder why python needs both tuples and lists (at least I did):

alist  = [2,3,5,7]
atuple = (2,3,5,7)

Tuples are immutable, which allows you to use them as keys in dictionaries, for example:

bands = {}
bands[("John","Lennon")]="Beatles"
bands[["John","Lennon"]]="Beatles" # can't use lists as keys

Plus, the syntax for a tuple containing a single element is awkward:

one_element_tuple = (1,)

I am pretty sure tuples confuse a lot of newbies, and I'm also pretty convinced that they don't add much to the language (I am interested in your point of view, though).

link|flag
The main concept of lists is to hold items of the same type (like arrays), while tuples hold items of potentially different types (like C structs or rows of a database). To me this is quite a useful distinction. – Kiv Jan 17 '09 at 23:10
The tuple syntax is also confusing only until you realize the commas are important and the parentheses aren't. For example "1," is the one element tuple and "atuple = 2, 3, 5, 7". – Kiv Jan 17 '09 at 23:14
Tuples are useful in situations where the performance overhead of tracking a mutable list of objects isn't needed. For example, if a function is always going to return a pair of objects (e.g. x,y coordinates), then using "return (x,y)" is a better route than "return [x,y]" – shsmurfy Jan 18 '09 at 2:18
@Kiv (1st comment), it's the first time I hear this distinction. Are you sure about this? I can write [1,"one",1.0] which seems to contradict your comment. @shsmurfy, ok, it makes sense. But did we need a separate syntax. Could we not have had [1,2,3].freeze() or such? – MiniQuark Jan 18 '09 at 12:36
Tuples are very useful for grouping things like x and y coordinates without needing an entire class for it, and without making them seperate parameters. – Mk12 Sep 12 at 3:37
vote up 4 vote down

For me the meaning of i=[] in the following code was a bit awkward.

class A():
    i = []                   #creates a class attribute
    def m(self):             
       self.i.append(7)      #accesses an object attribute or the class attribute                                 
       self.i = []           #obscures the class attribute with the object attribute

Having the class attributes accesible exactly the same way as object attributes and their syntax being similar to object attribute syntax in other languages led me to think that 'i=[]' meant "Set the i attribute on each object created in this class to a fresh emptly list". Needless to say, this is not the case :)

link|flag
aaah, so that's how it works? it always confused me! (in the few times I tried to use it anyway) – hasen j Jan 17 '09 at 14:00
Ah, this one got me too at first :) – Kiv Jan 17 '09 at 23:04
vote up 3 vote down

As much as I love Python, the documentation is poor. It's nearly impossible to go to the docs and find some random function when you have no idea of where it will be or what it'll be called. You're nearly always forced to google it.

link|flag
Really? I find the main index to be very useful: docs.python.org/library/index.html – Greg Case Jan 17 '09 at 8:35
If you have a good idea of where to go, it works quite well, but I've found that to be the biggest stumbling block people have. Even after doing Python heavily for years, I find myself resorting to google when looking for obscure things. This is especially bad for things like the compiler module. – Cody Brocious Jan 17 '09 at 8:40
I find the Python Quickref really useful: rgruet.free.fr/PQR25/PQR2.5.html. Almost anything can be looked up in seconds. – David Hanak Jan 17 '09 at 9:01
I'm astonished you say that; I've considered Python's documentation to be one of its strongest suits and much better than most open source projects. – Crashworks Jan 17 '09 at 10:16
I would add a recommendation - don't look up a specific function, look for a specific module. – J S Jan 17 '09 at 10:31
show 7 more comments
vote up 3 vote down

For me it's the indenting. As long as you are aware of the editors that you use and how they deal with tabs you are all right. If you switch up editors a lot and sometimes use tabs you might get bitten. I've run into this with stuff I have on my usb thumb drive and moving around to different systems using different editors.

Once I ran into it, I made sure the editors I use all expand tabs to spaces.

link|flag
vote up 3 vote down

Worst thing for me was the required ':' at the end of certain block-starting statements. It shouldn't be needed when the following line is indented, e.g.:

if test
    do_this
else
    do_that

Well, if that's the worst thing, then I guess I was pretty happy with the language overall. :-)

link|flag
You're right that the colon is not necessary for the parser. Guido actually mentioned that this was done entirely for readability reasons, which I think is neat. Few languages go to such effort to make the code easily readable :) – Kiv Jan 17 '09 at 23:06
vote up 3 vote down

If I started programming python now, I'd think the worst aspect is the lack of well-behaving closures and scope.

def broken(a):
    def f():
        a = a + 5
    f() # error

i = 10
for i in range(100):
    pass
assert i == 10 # breaks, i == 99
link|flag
This first function generates this error: UnboundLocalError: local variable 'a' referenced before assignment – JcMaco May 28 at 19:05
vote up 2 vote down

That behaviour isn't really surprising to me, because in many other languages there is the same effect. For example, in C (if x is an integer):

if (x) { ... }
if (x == 1) { ... }

Those are not the same if x is 5. Each language has its own rules regarding what happens if a non-boolean variable is used in a boolean context, and Python's rules are well-defined and (I think) sensible. The rule is (from the Language Reference section 5.10):

In the context of Boolean operations, and also when expressions are used by control flow statements, the following values are interpreted as false: False, None, numeric zero of all types, and empty strings and containers (including strings, tuples, lists, dictionaries, sets and frozensets). All other values are interpreted as true.

Python's rules do mean that the following act differently (suppose a is a list):

if a:             # false if a is empty
if a is not None: # true if a is empty
link|flag
vote up 1 vote down

@Federico Ramponi: I beleive the first example works like it does because of how the multiplier variable is scoped. In general, I often find it difficult to figure out the scoping of a variable just by looking at the code. At write time, it is usually clear, although you can get strange, unexpected behavior by accidentally reusing a name at a lower level. With explicit variable declarations, this could be avoided / signaled by complier warnings.

The other feature that was really strange for me at first is the layout based grouping. I really would not like to start a flame war on this issue, it has been discussed in many-many places before, but it CAN get confusing IF you mix spaces and tabs, and use at least two different editors/viewers to browse your code. The former is of course strongly advised against in most python FAQs.

link|flag
vote up 1 vote down

I don't find Python's reporting of syntax errors very helpful. This is quite important for newbies since they will hit a lot of these errors when learning Python. I remember getting frustrated by them when I was learning the language.

For example, if you run the following script

x = ([1, 2, 3]    # note the missing parenthesis
y = 8

you get the following response:

  File "C:\Python25\test.py", line 2
    y = 8
    ^
SyntaxError: invalid syntax

This kind of error message will confuse someone learning the language when they try to look for syntax errors in perfectly valid lines of code. Also, invalid syntax doesn't tell them much about what they've done wrong.

link|flag
I agree, but Python's parser isn't magic.. x = ([1, 2, 3]\n[1]) is valid syntax.. Python thinks trying to do "[1,2,3] y=8" is invalid (as it should), so the error occurs at "y=..". – dbr Jan 17 '09 at 13:45
I disagree: I have never had any problems with python's error messages. I guess a few years of C++ got me used to cryptic error messages: python's error messages are definitely better. – MiniQuark Jan 17 '09 at 15:29
@Miniquark: to clarify, this is about Python's syntax error messages, i.e. those that arise when Python is compiling your code to bytecode. I have no problems with the errors I get from Python once my code is running. – Pourquoi Litytestdata Jan 17 '09 at 17:53
vote up 1 vote down

The worst (also arguably the best) aspect of Python is the fact that any reference/cookbook you may buy is almost antiquated upon the next version release. Not only do many new modules and language constructs get added, allowing for more efficient/readable solutions, but can also get removed (for ex: lambda, map, reduce).

link|flag
Yeah, that's kind of true. But if you have ever tried Ruby, you know it can be a lot worse! And hey, Java has had about 3 different rewrites of the date classes, and 2 of the I/O classes. I guess languages evolve: as long as you don't have to rewrite everything all the time, it's fine. – MiniQuark Jan 17 '09 at 22:51
vote up 1 vote down

One thing I had issues with when starting Python was the whole "import"/"from import" business. There are many different ways to organize your files and directories in Python, and each method requires a different "import" syntax.

After I read through the documentation two or three times, though, I started to catch on.

link|flag
vote up 1 vote down

In Python, you can use the multiplication operator to copy string and list contents.

Be careful if the list content is a reference (object), as in Example 3 below. Python copies the reference. If you use the reference to change the contents of one object, you change the contents of the others, too.

I tested the non-comment code below in Python 3.

# Example 1: get 'aaa'

3 * "a"

# Example 2: a is [1, 1], and then [3, 1]

a = 2 * [1]

a[0] = 3

# Example 3: Be careful. a is [[], []], and then [[3], [3]]

a = 2 * [[]]

a[0].append(3)

In Example 3, we get the same results if we have a = 2 * [list()]. To avoid the final result of Example 3, we can use a list comprehension.

# Example 4: a is [[], []], and then [[3], []].

a = [[] for i in range(2)]

a[0].append(3)

link|flag
vote up 0 vote down

Greg, I agree that all languages deal with it a bit differently. But if you look at the example in the comments to my original question my point is perhaps stronger.

This:

if x:

is not the same as:

if x != False:

In your C example (and in many other languages) the above lines would be equivalent. But in Python they are not. The first one just converts x to a bool and tests it, the second one negatively equates x with False (which is not the same). Use x = "" and the first line is false and the second is true.

link|flag
I think if x: is quivelant to if bool(x) == True: – hasen j Jan 17 '09 at 9:20
@hasen j: and if bool(x) == True: is equivalent to if bool(x): – unbeknown Jan 17 '09 at 13:24
vote up 0 vote down

The whitespace issues, specifically the sensitivity the tabs versus spaces! (-:

You might like to look at the book "Dive Into Python" which is available for free under a GNU Free Documentation License.

HTH

cheers,

Rob

link|flag

Your Answer

Get an OpenID
or

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