Skip to content

Commit 756bc55

Browse files
committed
Math
1 parent 030e49f commit 756bc55

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -408,10 +408,9 @@ Numbers
408408

409409
### Math
410410
```python
411-
from math import e, pi
411+
from math import e, pi, inf, nan
412412
from math import cos, acos, sin, asin, tan, atan, degrees, radians
413413
from math import log, log10, log2
414-
from math import inf, nan, isinf, isnan
415414
```
416415

417416
### Statistics

index.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -432,10 +432,9 @@ <h3 id="basicfunctions">Basic Functions</h3>
432432
&lt;real&gt; = round(&lt;real&gt;, ±ndigits)
433433
</code></pre>
434434
<h3 id="math">Math</h3>
435-
<pre><code class="python language-python hljs"><span class="hljs-keyword">from</span> math <span class="hljs-keyword">import</span> e, pi
435+
<pre><code class="python language-python hljs"><span class="hljs-keyword">from</span> math <span class="hljs-keyword">import</span> e, pi, inf, nan
436436
<span class="hljs-keyword">from</span> math <span class="hljs-keyword">import</span> cos, acos, sin, asin, tan, atan, degrees, radians
437437
<span class="hljs-keyword">from</span> math <span class="hljs-keyword">import</span> log, log10, log2
438-
<span class="hljs-keyword">from</span> math <span class="hljs-keyword">import</span> inf, nan, isinf, isnan
439438
</code></pre>
440439
<h3 id="statistics">Statistics</h3>
441440
<pre><code class="python language-python hljs"><span class="hljs-keyword">from</span> statistics <span class="hljs-keyword">import</span> mean, median, variance, pvariance, pstdev

0 commit comments

Comments
 (0)