Syntax Matters

"Contrary to the foolish notion that syntax is immaterial, people optimize the way they express themselves, and so express themselves differently with different syntaxes." - Erik Naggum

This comes today, just as I'm rediscovering some of the worst offenders of Python's syntax. For example, accessing an instance and class variable "var" are "self.var" (5 chars) & "self.__class__.var" (15 chars!), respectively in Python and "@var" (1 char) & "@@var" (2 chars) in Ruby. The alternative of referencing through the class-name is hackish too as the behavior can't be changed by the inheritor! It's enough to make me want to avoid using class variables! "".join(list) and global functions are other examples counter-intuitive syntax.

Now, I've plenty of love still for Python, I attended PyCon 2006 and am happy to see the new "with" syntax comming in Python 2.5. I just would like to se Python 3000 do better.

3 responses
Hey, Ben. I just started reading your blog, and came across this.

I only recently started oging in Python, but I like it a lot. I've tried Ruby, too, but I don't like its syntax. I agree that it's annoying to have to type self.var, or self.__class__.var, but I think it's better than Ruby (or Perl) style syntax. The @var or @@var syntax is obscure, and doesn't really tell you what's going on, unless you already know. I know it's fine if you're already a fluent Ruby coder, but it's just one step closer to the syntax disaster that is Perl.

In fact, I think according to the quote you started with, Python is the clear winner. I think the Naggum didn't mean optimizing for number of chars, but for clarity of expression. In that sense, the Python syntax is far better than Ruby's.

Use the name "my" instead of "self" for Python methods, and it usually makes far more sense.

class usa_telephone_number(object):
# Partial class implementation
def _get_areacode(my):
return my._areacode

def _get_exchange(my):
return my._exchange

def _get_number(my):
return my._number

areacode = property(fget=_get_areacode, fset=None)
exchange = property(fget=_get_exchange, fset=None)
number = property(fget=_get_number, fset=None)

def fromString(my, s):
(a, e, n) = somehowParseNumberFrom(s)
my._areacode = a
my._exchange = e
my._number = n

def __equals__(my, another):
return (my._areacode == another._areacode) and ...etc...

[...] I can be a stickler for syntax. As I’ve said before, syntax matters. It changes the way we interact with the system, it changes what is done, how it is done, and what [...]