Chapter 6 - Python Quest
For And While Loops
Convert loop shapes, stop early, and coordinate several changing variables.
XP
0Level 1Stars
0/36quest starsCombo
0clean runsRank
Seed0/160 Python scoreFor and while loops
100 XPFor Count Builder
A scoreboard helper writes the counting numbers for a warm-up round.
Write count_with_for(n) so it returns the numbers from 1 through n using a for loop shape.
Sample checks
count_with_for(3)returns[1,2,3]Explanation: count to three
count_with_for(0)returns[]Explanation: zero means no laps
Hint
Hints are ready when you want one.
Lesson reference
Review: Counting with for and while
Your Python
count_with_for
Loading editor
Judge
Ready
Run your code when it feels ready.
