vote up 3 vote down star

I have a definition like this

def bar(self, foo=None, bar=None, baz=None):
    pass

I want to make sure a maximum of one of foo, bar, baz is passed. I can do

if foo and bar:
    raise Ex()

if foo and baz:
    raise Ex()
....

But there got be something simpler.

flag

5 Answers

vote up 7 vote down check

How about:

 initialisers = [foo, bar, baz]
 if initialisers.count(None) < len(initialisers) - 1:
     raise Ex()

It simply counts how many None are present. If they're all None or only one isn't then fine, otherwise it raises the exception.

link|flag
Thanks. Short, sweet and simple. Me like. – uswaretech Oct 30 at 10:22
Glad you like it. I had the same problem recently but with 15 initialisers. – Scott Griffiths Oct 30 at 10:31
vote up 3 vote down

Try

 count = sum(map(lambda x: 0 if x is None else 1, (foo, bar, baz)))
 if count > 1:
     raise Ex()

That turns None into 0 and everything into 1 and then sums everything up.

link|flag
Thank you. Your solution works, I just found Scott's answer more explicit and simple so accpted it. – uswaretech Oct 30 at 10:23
1  
or without lambda: count = sum(0 if x == None else 1 for x in [foo, bar, baz]) – JonahSan Oct 30 at 10:26
Yeah, I'm not used to the new list thingy :) – Aaron Digulla Oct 30 at 12:54
Using the count method is probably simplest, but if you're going to use a custom generator expression, probably the cleanest would be: count = sum(1 for x in [foo, bar, baz] if x is not None) – Jeffrey Harris Oct 30 at 15:11
vote up 1 vote down

Like this.

def func( self, **kw ):
    assert len(kw) == 1, "Too Many Arguments"
    assert kw.keys[0] in ( 'foo', 'bar', 'baz' ), "Argument not foo, bar or baz"
link|flag
Most elegant solution. Little error though : assert kw.keys0] in ... – peufeu Oct 30 at 16:01
vote up 0 vote down
if len(filter(lambda x: x != None, locals().values())) > 1:
    raise Exception()

Edited to address Alex's point.

link|flag
2  
This is wrong as it filters away 0s and ''s as well as Nones. – Alex Martelli Oct 30 at 15:45
Fair enough. Fixed. – Brent Newey Oct 30 at 17:16
vote up 3 vote down

x!=None returns True (whose numeric value is 1!) for non-Nones, False (whose numeric value is 0) for Nones. So,

sum(x!=None for x in (foo, bar, baz))

is the simplest way to count how many of those identifiers are bound to non-None values (and you can check that count against 1 just like other answers do for their ways of obtaining the count). This is a very general approach in that instead of x!=None you could be using any strictly-bool predicate of interest; for example if you have a bunch of integers and want to know how many of them have 3 as the first digit of their decimal representation,

sum(str(abs(x)).startswith('3') for x in (a, b, c, d, e))

works fine too.

Don't be queasy about "summing bools": Python bools are sharply defined as a subclass of int with exactly two instances which have peculiar str/repr but otherwise behave exactly like the plain ints 0 and 1. There are good pragmatical reasons for this design and the ability to do arithmetic on bools is one of them, so feel free to use that ability!-)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.