On Mon, Sep 17, 2012 at 7:08 PM, David Smith <dav...@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.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to