简体   繁体   中英

How to evaluate python string boolean expression using eval()?

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?

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).

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM