'indent'ing Python in windows bat

Ian Kelly ian.g.kelly at gmail.com
Mon Sep 17 23:01:14 EDT 2012


On Mon, Sep 17, 2012 at 7:08 PM, David Smith <davids at invtools.com> wrote:
> How do I "indent" if I have something like:
> if (sR=='Cope'): sys.exit(1) elif (sR=='Perform') sys.exit(2) else
> sys.exit(3)

How about:

if sR == 'Cope':
    sys.exit(1)
elif sR == 'Perform':
    sys.exit(2)
else:
    sys.exit(3)

I don't really understand why you're trying to keep it all on one line.



More information about the Python-list mailing list