In article <mailman.854.1347937306.27098.python-l...@python.org>, Ian Kelly <ian.g.ke...@gmail.com> wrote:
> 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. sys.exit({'Cope':1, 'Perform':2}.get(sR, 3)) -- http://mail.python.org/mailman/listinfo/python-list