How to define a new arithmetic operation in python
Suppose I want to have operator ?
such that A?B
will result in A
to power of 1/B
So the statement below would be true
A?B == A**(1/B)
for instance in R I can achieve it as following
`?` <- function(A,B) A^(1/B)
4?2
#2