File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -12,10 +12,12 @@ Python pow() built-in function
1212 From the <a target="_blank" href="https://docs.python.org/3/library/functions.html#pow">Python 3 documentation</a>
1313 </base-disclaimer-title >
1414 <base-disclaimer-content >
15- The pow() function returns the power of a number. It takes two or three arguments:
16- pow(base, exp): Returns base raised to the power of exp (i.e., base ** exp).
17- pow(base, exp, mod): Returns (base ** exp) % mod (useful for modular arithmetic).
18- If the optional mod argument is present, the result is computed more efficiently than base ** exp % mod.
15+ The pow() function returns the power of a number.
16+ It takes two or three arguments:
17+ pow(base, exp): Returns base raised to the power of exp (base ** exp).
18+ pow(base, exp, mod): Returns (base ** exp) % mod (for modular arithmetic).
19+ If the optional mod argument is present, the result is computed more
20+ efficiently than base ** exp % mod.
1921 </base-disclaimer-content >
2022</base-disclaimer >
2123
You can’t perform that action at this time.
0 commit comments