From d0d7bd1459561976c3dd8a04b7ad6f9c7f43b3b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Wed, 26 Dec 2018 20:39:10 +0100 Subject: [PATCH] Formating --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 4233d60..4fd3d05 100644 --- a/README.md +++ b/README.md @@ -124,6 +124,7 @@ from_inclusive = .start to_exclusive = .stop ``` + Enumerate --------- ```python @@ -180,6 +181,7 @@ def step(start, step): yield start start += step ``` + ```python >>> stepper = step(10, 2) >>> next(stepper), next(stepper), next(stepper) @@ -192,6 +194,7 @@ Type ```python = type() # / / ... ``` + ```python from numbers import Number, Integral, Real, Rational, Complex is_number = isinstance(, Number)