In message <slrnicv44s.9it.usenet-nos...@guild.seebs.net>, Seebs wrote:

> At least in C, if I see:
>        if (foo)
>                a;
>        else
>                b;
>                c;
> 
> I *know* that something is wrong.

This is why, when I started learning Python, I soon developed the habit of 
inserting explicit “#end” markers. To Pythonize your example my way, it 
would have come out as

        if foo :
                a
        else :
                b
        #end if
                c

which should also give a hint that something might be wrong.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to