File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -5,13 +5,13 @@ exercises: 0
55questions :
66- " How can I do the same operations on many different values?"
77objectives :
8- - " Explain what a for loop does."
9- - " Correctly write for loops to repeat simple calculations."
8+ - " Explain what a ` for` loop does."
9+ - " Correctly write ` for` loops to repeat simple calculations."
1010- " Trace changes to a loop variable as the loop runs."
11- - " Trace changes to other variables as they are updated by a for loop."
11+ - " Trace changes to other variables as they are updated by a ` for` loop."
1212keypoints :
1313- " Use `for variable in sequence` to process the elements of a sequence one at a time."
14- - " The body of a for loop must be indented."
14+ - " The body of a ` for` loop must be indented."
1515- " Use `len(thing)` to determine the length of something that contains other values."
1616---
1717
You can’t perform that action at this time.
0 commit comments