I need to pass inequalities to a function for evaluation within the function. Is there a way to evaluation the inequality if passed as a string? Or must I pass a representation of the inequality and use if/else statements to generate the sign?
|
|
Your question is a little vague, but it sounds like you want to evaluate a string containing an expression (such as
or
These are both equivalent; now you can pass around
As Gerrat's answer suggests, the operator module may also be useful for things like this. Now that I know you are processing user strings, I would definitely suggest creating a dictionary that maps strings to functions. (Perhaps that's what you meant in your title?) Passing userland strings into
You could still save yourself work by using
Then update
From there you can easily call functions in the dict like so:
|
|||||||
|
|
You could use the
|
|||||||||
|