Code blocks and top posting

Hung Jung Lu hungjunglu at yahoo.com
Sat Apr 10 11:20:25 EDT 2004


Dave Benjamin <ramen at lackingtalent.com> wrote in message news:<slrnc7fbrc.1ek.ramen at lackingtalent.com>...
> def answer(question):
>     return 'For pretty much the same reason top posting is.'
>     
> if __name__ == '__main__':
>     question = 'Why is Python not having code blocks annoying?'
>     print answer(question)
> 
> # HaHaOnlySerious

def f(x):
    print x

if __name__ == '__main__':
    f('Functions are annoying, by the same token?')

Hung Jung



More information about the Python-list mailing list