From 2b88b8cf9b538d834f2db8094c0102f92bda76fe Mon Sep 17 00:00:00 2001 From: Annamaliakal <42714414+Annamaliakal@users.noreply.github.com> Date: Fri, 13 Sep 2019 00:19:51 +0530 Subject: [PATCH] Update loops.rst --- source/loops.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/loops.rst b/source/loops.rst index c50d1be..0849271 100644 --- a/source/loops.rst +++ b/source/loops.rst @@ -6,7 +6,7 @@ Introduction Something you might have noticed: our programs often feature repetition. Python has a powerful concept it makes use of called looping -(jargon: *iteration*), which we can use to cut out our reptitive code! +(jargon: *iteration*), which we can use to cut out our repetitive code! For now, **try this easy example**:: for name in "John", "Sam", "Jill":