From 756bc55dfc682d1c1c5a5e4de6f0190200650179 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Fri, 12 Apr 2019 20:11:28 +0200 Subject: [PATCH] Math --- README.md | 3 +-- index.html | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3afb32e..3cddf94 100644 --- a/README.md +++ b/README.md @@ -408,10 +408,9 @@ Numbers ### Math ```python -from math import e, pi +from math import e, pi, inf, nan from math import cos, acos, sin, asin, tan, atan, degrees, radians from math import log, log10, log2 -from math import inf, nan, isinf, isnan ``` ### Statistics diff --git a/index.html b/index.html index be132fc..8824449 100644 --- a/index.html +++ b/index.html @@ -432,10 +432,9 @@ Point(x=1, y=2 <real> = round(<real>, ±ndigits)

Math

-
from math import e, pi
+
from math import e, pi, inf, nan
 from math import cos, acos, sin, asin, tan, atan, degrees, radians
 from math import log, log10, log2
-from math import inf, nan, isinf, isnan
 

Statistics

from statistics import mean, median, variance, pvariance, pstdev