May I ask what you are actually doing with upper and lower after creating
them? Are you checking to see if another value is between? Something else?
If they are always being used together and you're doing the same things
with them all the time, it starts to smell like you might want to just
write a class.

---
Ricky.

"I've never met a Kentucky man who wasn't either thinking about going home
or actually going home." - Happy Chandler


On Tue, Sep 14, 2021 at 10:11 AM Ir. Robert Vanden Eynde <
[email protected]> wrote:

> Add you can call this function plusminus
> Then use the funcoperators module to write :
>
> upper, lower = a +plusminus- b
>
> pip install funcoperators
>
> Le mar. 14 sept. 2021 à 16:02, Paul Moore <[email protected]> a écrit :
>
>> I doubt it, it seems way too specialised to be worth making into a
>> language feature.
>>
>> If you want to, you can write a function:
>>
>> def limits(a, b):
>>     return a+b, a-b
>>
>> Paul
>>
>> On Tue, 14 Sept 2021 at 14:55, <[email protected]> wrote:
>> >
>> > Hi all,
>> >
>> > I was wondering on whether there is any interest in introducing a
>> "plus-minus" operator:
>> >
>> > Conceptually very simple; instead of:
>> >
>> >         upper, lower = a + b, a - b
>> >
>> > use instead:
>> >
>> >         upper, lower = a +- b
>> >
>> > In recent projects I've been working on, I've been having to do the
>> above "plus minus" a lot, and so it would simplify/clean-up/reduce error
>> potential cases where I'm writing the results explicitly.
>> >
>> > It isn't a big thing, but seems like a clean solution, that also takes
>> advantage of python's inherent ability to return and assign tuples.
>> > _______________________________________________
>> > Python-ideas mailing list -- [email protected]
>> > To unsubscribe send an email to [email protected]
>> > https://mail.python.org/mailman3/lists/python-ideas.python.org/
>> > Message archived at
>> https://mail.python.org/archives/list/[email protected]/message/MCAS5B63Q6ND74GEBP2N3OF3HLISSQMA/
>> > Code of Conduct: http://python.org/psf/codeofconduct/
>> _______________________________________________
>> Python-ideas mailing list -- [email protected]
>> To unsubscribe send an email to [email protected]
>> https://mail.python.org/mailman3/lists/python-ideas.python.org/
>> Message archived at
>> https://mail.python.org/archives/list/[email protected]/message/XYRRZPCPWF6VJTBX3MAWCIQEWXJC5F3X/
>> Code of Conduct: http://python.org/psf/codeofconduct/
>>
> _______________________________________________
> Python-ideas mailing list -- [email protected]
> To unsubscribe send an email to [email protected]
> https://mail.python.org/mailman3/lists/python-ideas.python.org/
> Message archived at
> https://mail.python.org/archives/list/[email protected]/message/527MLDIJ3EHBPGSS2KJ4CBP3RVMR4JBZ/
> Code of Conduct: http://python.org/psf/codeofconduct/
>
_______________________________________________
Python-ideas mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-ideas.python.org/
Message archived at 
https://mail.python.org/archives/list/[email protected]/message/PNMWXFP6ETVT425CGOZQW4UPEKAZ6TR6/
Code of Conduct: http://python.org/psf/codeofconduct/

Reply via email to