diff --git a/README.md b/README.md index 44b2f5b..6cfd031 100644 --- a/README.md +++ b/README.md @@ -484,7 +484,7 @@ Numbers ### Types ```python = int() # Or: math.floor() - = float() # Or: ±e + = float() # Or: = complex(real=0, imag=0) # Or: + j = fractions.Fraction(numerator=0, denominator=1) = decimal.Decimal() diff --git a/index.html b/index.html index cd7f92e..1ed4f36 100644 --- a/index.html +++ b/index.html @@ -563,7 +563,7 @@ to_exclusive = <range>.stop

#Numbers

Types

<int>      = int(<float/str/bool>)    # Or: math.floor(<float>)
-<float>    = float(<int/str/bool>)    # Or: <real>±e<int>
+<float>    = float(<int/str/bool>)    # Or: <real>e±<int>
 <complex>  = complex(real=0, imag=0)  # Or: <real> + <real>j
 <Fraction> = fractions.Fraction(numerator=0, denominator=1)
 <Decimal>  = decimal.Decimal(<str/int/float>)