From c2d98bd68e27f6ff9ed42a0c64a4c4e9b888c6f7 Mon Sep 17 00:00:00 2001 From: Carlos Date: Sun, 11 Aug 2024 15:48:37 -0400 Subject: [PATCH] Update range.md with improved examples and explanations --- docs/builtin/range.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/builtin/range.md b/docs/builtin/range.md index 256f8a4d..eabf6e3d 100644 --- a/docs/builtin/range.md +++ b/docs/builtin/range.md @@ -108,11 +108,11 @@ Two examples where the `stop` parameter is set to 0 ```python >>> for i in range(0): ... print(i) -# +# ``` ```python >>> for i in range(1,0): ... print(i) -# +# ```