I have a bot in python that allows the users to evaluate mathematical expressions (via a set of safe functions), but I would like to define my own operator. Does python support such a thing?
|
|
No, you can't create new operators. However, if you are just evaluating expressions, you could process the string yourself and calculate the results of the new operators. |
||
|
|
|
no, python comes with a predefined, yet overridable, set of operators. |
||
|
|
|
If you intend to apply the operation on a particular class of objects, you could just override the operator that matches your function the closest... for instance, overriding |
||
|
|
|
|
While technically you cannot define new operators in Python, this clever hack works around this limitation. It allows you to define infix operators like this:
|
||||||||||
|
