Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
List & while Loop | The while Loop
Python Loops Tutorial
course content

Conteúdo do Curso

Python Loops Tutorial

Python Loops Tutorial

1. The for Loop
2. The while Loop
3. Nested Loops

bookList & while Loop

We've already integrated lists into for loops.

To interact with the list now, we'll require one crucial function: len(list). This function provides the list's length.

Don't fret; you'll grasp it!

Examine the code below:

1234567
numbers = [1, 2, 4, 5, 7] i = 0 # Printing all elements from the list while i < len(numbers): print(numbers[i]) i += 1
copy

How does the code work?

Tarefa

Calculate the sum of the squares of the numbers in the list.

  1. Initialize a while loop, using i as the index to iterate through the numbers.
  2. Accumulate the squares of the numbers into the counter to compute the sum.
  3. Display the value stored in the counter.

Switch to desktopMude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 2. Capítulo 3
toggle bottom row

bookList & while Loop

We've already integrated lists into for loops.

To interact with the list now, we'll require one crucial function: len(list). This function provides the list's length.

Don't fret; you'll grasp it!

Examine the code below:

1234567
numbers = [1, 2, 4, 5, 7] i = 0 # Printing all elements from the list while i < len(numbers): print(numbers[i]) i += 1
copy

How does the code work?

Tarefa

Calculate the sum of the squares of the numbers in the list.

  1. Initialize a while loop, using i as the index to iterate through the numbers.
  2. Accumulate the squares of the numbers into the counter to compute the sum.
  3. Display the value stored in the counter.

Switch to desktopMude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 2. Capítulo 3
toggle bottom row

bookList & while Loop

We've already integrated lists into for loops.

To interact with the list now, we'll require one crucial function: len(list). This function provides the list's length.

Don't fret; you'll grasp it!

Examine the code below:

1234567
numbers = [1, 2, 4, 5, 7] i = 0 # Printing all elements from the list while i < len(numbers): print(numbers[i]) i += 1
copy

How does the code work?

Tarefa

Calculate the sum of the squares of the numbers in the list.

  1. Initialize a while loop, using i as the index to iterate through the numbers.
  2. Accumulate the squares of the numbers into the counter to compute the sum.
  3. Display the value stored in the counter.

Switch to desktopMude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

We've already integrated lists into for loops.

To interact with the list now, we'll require one crucial function: len(list). This function provides the list's length.

Don't fret; you'll grasp it!

Examine the code below:

1234567
numbers = [1, 2, 4, 5, 7] i = 0 # Printing all elements from the list while i < len(numbers): print(numbers[i]) i += 1
copy

How does the code work?

Tarefa

Calculate the sum of the squares of the numbers in the list.

  1. Initialize a while loop, using i as the index to iterate through the numbers.
  2. Accumulate the squares of the numbers into the counter to compute the sum.
  3. Display the value stored in the counter.

Switch to desktopMude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
Seção 2. Capítulo 3
Switch to desktopMude para o desktop para praticar no mundo realContinue de onde você está usando uma das opções abaixo
some-alt