[meta-sig] FYI: [comp.lang.python.*] Posting guidelines -- bi-weekly posting

David Ascher da@skivs.ski.org
Fri, 10 Jul 1998 20:41:43 -0700 (PDT)


> def my_hello(how_often):
>         retval = ( how_often * "Hello World! " )  # "multiply" string
>         return retval[:-1]                        # strip off trailing space

why the ()'s?