Re: python bracket

2007-02-03 Thread Gabriel Genellina
En Sat, 03 Feb 2007 02:48:45 -0300, <[EMAIL PROTECTED]> escribió: > there is no bracket in python > > how can i know where a loop or a function ends? You should read some introductory texts at least. You can find the Python Tutorial inside your Python install, or you can read it online at http:

Re: python bracket

2007-02-02 Thread Paddy
On Feb 3, 5:48 am, [EMAIL PROTECTED] wrote: > there is no bracket in python > > how can i know where a loop or a function ends? Hi fatwallet, Please, please, please, peruse the following: http://wiki.python.org/moin/BeginnersGuide There is lots in their to get you started and up-and-running in P

Re: python bracket

2007-02-02 Thread Olexandr Melnyk
By indentation: def some_function(): a = 10 print a print b # this statement doesn't belong to the function above - Olexandr Melnyk, http://omelnyk.net/ 2007/2/3, [EMAIL PROTECTED] <[EMAIL PROTECTED]>: there is no bracket in python how can i know where a lo

python bracket

2007-02-02 Thread fatwallet961
there is no bracket in python how can i know where a loop or a function ends? -- http://mail.python.org/mailman/listinfo/python-list