From fecbd79c2b88a197dd6c29b86299030f93508468 Mon Sep 17 00:00:00 2001 From: Lisette <39196383+delpinolisette@users.noreply.github.com> Date: Fri, 17 Jun 2022 15:49:33 -0400 Subject: [PATCH] range return value Added return value explanation for the range object. --- source/docs/functions/range.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/docs/functions/range.rst b/source/docs/functions/range.rst index b466606..70342b3 100644 --- a/source/docs/functions/range.rst +++ b/source/docs/functions/range.rst @@ -20,7 +20,7 @@ Syntax Return Value ============ -#TODO +An immutable iterable object `range(start,stop,[step])` which can be iterated through in a `for` loop. Time Complexity ============ @@ -49,4 +49,4 @@ Example See Also ======== -#TODO \ No newline at end of file +#TODO