On Mon, May 22, 2017 at 9:14 AM, bartc <[email protected]> wrote: > I think 'end' can be used in Python too: > > if (cond): > stmts > end > > But: > > - You need to define a dummy variable 'end'
Interesting idea. You can avoid the dummy variable part by just using
'#end', however:
if cond:
stmts
#end
Skip
--
https://mail.python.org/mailman/listinfo/python-list
