Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/loops.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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":
Expand Down