Challenge: Working with the While Loop
Opgave
Swipe to start coding
You are given the variable i
for iterating through the list and the list squares
, which should store the squares of numbers from 1 to 10.
- Use
a**b
to raise the numbera
to the power ofb
. - Assign the value 1 to the variable
i
in order to start the iteration. - Create a
while
loop that will iterate through the numbers from 1 to 10, inclusive. - Inside the
while
loop, write the square ofi
(i
raised to the power of 2) into thesquares
list using the.append()
method. - Increment
i
by 1 to continue iterating through the loop.
Løsning
Var alt klart?
Tak for dine kommentarer!
Sektion 5. Kapitel 2
single
Spørg AI
Spørg AI
Spørg om hvad som helst eller prøv et af de foreslåede spørgsmål for at starte vores chat
Suggested prompts:
Opsummér dette kapitel
Explain code
Explain why doesn't solve task
Awesome!
Completion rate improved to 1.67
Challenge: Working with the While Loop
Stryg for at vise menuen
Opgave
Swipe to start coding
You are given the variable i
for iterating through the list and the list squares
, which should store the squares of numbers from 1 to 10.
- Use
a**b
to raise the numbera
to the power ofb
. - Assign the value 1 to the variable
i
in order to start the iteration. - Create a
while
loop that will iterate through the numbers from 1 to 10, inclusive. - Inside the
while
loop, write the square ofi
(i
raised to the power of 2) into thesquares
list using the.append()
method. - Increment
i
by 1 to continue iterating through the loop.
Løsning
Var alt klart?
Tak for dine kommentarer!
Awesome!
Completion rate improved to 1.67Sektion 5. Kapitel 2
single