You are looking for a compact way to write out a truth table. (Your only other alternative is to find a way to simplify your expressions using boolean algebra; a simplified form may not exist.) There is no way to make this simpler except to save on typing:
def TruthTable(text):
table = {}
for line in text.splitlines():
line = line.strip()
if line:
inputs,output = line.split()
table[tuple(bool(int(x)) for x in inputs)] = bool(int(output))
return lambda *inputs:table[inputs]
Demo:
myFunc = TruthTable('''
000 1
001 0
010 0
011 1
100 1
101 0
110 0
111 1
''')
Output:
>>> myFunc(False, False, True)
False
If you need more than boolean outputs, you can adapt this to refer to arbitrary expressions by using for example a dictionary, and post-processing the keys into tuples of booleans:
{
(0,0,0): <expr0>,
(0,0,1): <expr1>,
(0,1,0): <expr2>,
(0,1,1): <expr3>,
...
}
You could also do it as follows with binary notation (e.g. 0b110 == 6) but I find it much less clean:
{
0b000: <expr0>,
0b001: <expr1>,
...
}
You could even just use a list which you later convert into a dictionary for quick lookup (by doing dict((intToBinarytuple(i),expr) for i,expr enumerate(myList))):
[
# ABC
<expr0>, # 000
<expr1>, # 001
<expr2>, # 010
<expr3>, # 011
...
]
sidenote: In the unlikely event you need arbitrary python commands, you can dispatch like so:
conditions = (True, False, True)
c = lambda *args: conditions==toBooleanTuple(args)
if c(0,0,0):
...
elif c(0,0,1):
...
elif c(0,1,0):
...
elif c(0,1,1):
...
== Trueand== Falsealmost always a (stylistic) mistake. Usecond_1 and not cond_2)etc. – Sven Marnach Mar 1 '12 at 23:07