As you know there are arithmetic operators like + or -.
Is there a way to create my own operator which can execute a specific task between two variables?
For example:
a, b = 2, 5
a '+' b == 7
What I would like to do:
a 'my own operator' b == some_specific_value