+ 3
precedence of power is right to left
2**3**4 is 2**(3**4) not (2**3)**4 why?
2 Respuestas
+ 4
In Mathematics, 
     c         (   c)
  b            (b   )
a       =  a
And
      c
(  b)        (b*c)
(a  )   = a
2**3**4 is 2**(3**4) not (2**3)**4 why?