I can evaluate an expression in NumExpr like this
numexpr.evaluate('17 == b', local_dict={'b': 17})
How can I get list of variable inside and expression like '17 == b'
then I will get ['b']
Thank you.
I can evaluate an expression in NumExpr like this
numexpr.evaluate('17 == b', local_dict={'b': 17})
How can I get list of variable inside and expression like '17 == b'
then I will get ['b']
Thank you.