diff --git a/README.md b/README.md index 64b14ae..ea92f9f 100644 --- a/README.md +++ b/README.md @@ -412,6 +412,7 @@ Numbers = float() = complex(real=0, imag=0) # Or: + j ``` +* **`'int()'` and `'float()'` raise ValueError on malformed string.** ### Basic Functions ```python diff --git a/index.html b/index.html index e639f46..2ff50a7 100644 --- a/index.html +++ b/index.html @@ -484,6 +484,9 @@ Point(x=1, y=2 <float> = float(<int/str/bool>) <complex> = complex(real=0, imag=0) # Or: <real> + <real>j +
    +
  • 'int()' and 'float()' raise ValueError on malformed string.
  • +

Basic Functions

<num>  = pow(<num>, <num>)           # Or: <num> ** <num>
 <real> = abs(<num>)