...

Chapter 6 - Python Quest

For And While Loops

Convert loop shapes, stop early, and coordinate several changing variables.

XP
0Level 1
Stars
0/36quest stars
Combo
0clean runs
Rank
Seed0/160 Python score
For and while loops

For Count Builder

100 XP

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

0/4

Run your code when it feels ready.