1

I get boolean expression like below :

string = '!True && !(True || False || True)'

I know eval('1+2') returns 3. But when I am executing eval(string) it is throwing me error as in invalid syntax.

Is there any other way I can execute the above expression?

Martijn Pieters
  • 1,048,767
  • 296
  • 4,058
  • 3,343
Manu
  • 67
  • 2
  • 3
  • 8

2 Answers2

4

None of !, && and || are valid Python operators; eval() can only handle valid Python expressions.

You'd have to replace those expressions with valid Python versions; presumably ! is not, && is and, and || is or, so you could just replace those with the Python versions:

eval(string.replace('&&', 'and').replace('||', 'or').replace('!', 'not '))

Note the space after not because Python requires this.

The better approach would be to not use the wrong spelling for those operators (they look like Java or JavaScript or C).

Martijn Pieters
  • 1,048,767
  • 296
  • 4,058
  • 3,343
2

If you want to parse boolean logic (in contrast to control flow) take a look at this stackoverflow post. It mentions pyparsing

The pyparsing module is an alternative approach to creating and executing simple grammars

and sympy.

The logic module for SymPy allows to form and manipulate logic expressions using symbolic and boolean value.

There also seems to be a parser implemented with pyparsing.

Of course you could also write a parser yourself.

Manu Artero
  • 9,238
  • 6
  • 58
  • 73
syntonym
  • 7,134
  • 2
  • 32
  • 45