diff --git a/README.md b/README.md index 1ecb75c..c397193 100644 --- a/README.md +++ b/README.md @@ -185,12 +185,12 @@ def step(start, step): Type ---- ```python -type() # / / ... + = type() # / / ... ``` ```python -import numbers -isinstance(, numbers.Number) # Integral, Real, Rational, Complex -callable() # Is element a function +from numbers import Number, Integral, Real, Rational, Complex +is_number = isinstance(, Number) +is_function = callable() ```