File tree 1 file changed +5
-6
lines changed
1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -12,12 +12,11 @@ Python pow() built-in function
12
12
From the <a target="_blank" href="https://docs.python.org/3/library/functions.html#pow">Python 3 documentation</a>
13
13
</base-disclaimer-title >
14
14
<base-disclaimer-content >
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.
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 (base ** exp).
17
+ pow(base, exp, mod): Returns (base ** exp) % mod (for modular arithmetic).
18
+ If the optional mod argument is present, the result is computed more
19
+ efficiently than base ** exp % mod.
21
20
</base-disclaimer-content >
22
21
</base-disclaimer >
23
22
You can’t perform that action at this time.
0 commit comments