In order to make Python look more familiar, I've tried to assign an operator symbol to a variable's name,just for educational purposes: import operator
equals = operator.eq
This seems to work fine for equals(a,b)
but not for a equals b
Is there a way to express that a equals b
instead of a == b