What is the best way to do Python expositoning?
Should I use the **
or math.pow
?
Example math.pow
:
> math.pow(3, 4);
#Imprime: 81.0
Example with double asterisks ?
> 3 ** 4
#Imprime : 81
What should I take into consideration when using them?