what do you call the feature of Python where:
You assign a function to a variable
myPowerVariable = pow
mySqrtVariable = math.sqrt
Then you call that variable with arguments?
myPowerVariable(2,3)
prints 8
mySqrtVariable(9)
prints 3
If you try that in PHP, it won't work, hoping somebody can tell me what do you call this feature.
Thank you