Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
If/Else in a Nested Loop | Nested Loops
course content

Conteúdo do Curso

Python Loops Tutorial

If/Else in a Nested LoopIf/Else in a Nested Loop

Utilizing if statements remains consistent whether applied within nested loops or in a single while or for loop.

Examine the code below:

How does the code work?

We've just observed an example of utilizing if/else within a nested loop while handling the matrix.

Now, in your assignment, you'll be dealing with two strings.

Feel free to refer to hints if necessary!

Tarefa

Print all the vowels from the text.

  1. Initialize i.
  2. Configure the outer while loop to iterate through the number of elements in the text.
  3. Configure the inner for loop to iterate through the number of elements in the vowels.
  4. Implement the condition: if an element in the text matches one of the elements in vowels, then print the element.

Tudo estava claro?

Seção 3. Capítulo 5
toggle bottom row
course content

Conteúdo do Curso

Python Loops Tutorial

If/Else in a Nested LoopIf/Else in a Nested Loop

Utilizing if statements remains consistent whether applied within nested loops or in a single while or for loop.

Examine the code below:

How does the code work?

We've just observed an example of utilizing if/else within a nested loop while handling the matrix.

Now, in your assignment, you'll be dealing with two strings.

Feel free to refer to hints if necessary!

Tarefa

Print all the vowels from the text.

  1. Initialize i.
  2. Configure the outer while loop to iterate through the number of elements in the text.
  3. Configure the inner for loop to iterate through the number of elements in the vowels.
  4. Implement the condition: if an element in the text matches one of the elements in vowels, then print the element.

Tudo estava claro?

Seção 3. Capítulo 5
toggle bottom row
some-alt