Conteúdo do Curso
Tutorial de Loops em Python
Tutorial de Loops em Python
A Declaração Else em um Loop While
Em Python, o bloco else
pode ser adicionado a um loop while
. O bloco else
é executado quando o loop termina normalmente, ou seja, a condição do loop se torna False
sem encontrar uma declaração break
.
travel_list = ["Monako", "Luxemburg", "Liverpool", "Barcelona", "Munchen"] # Initialize index i = 0 # Iterate through the destinations while i < len(travel_list): print(travel_list[i]) i += 1 else: print("All destinations have been listed!")
Exemplo: Interrompendo o Loop
Se o loop terminar com uma declaração break
(por exemplo, quando uma cidade específica é encontrada), o bloco else
não é executado.
# List of travel destinations travel_list = ["Monako", "Luxemburg", "Liverpool", "Barcelona", "Munchen"] # Initialize index i = 0 # Search for a specific destination while i < len(travel_list): if travel_list[i] == "Barcelona": break print(travel_list[i]) i += 1 else: print("All destinations have been listed!") # This won't execute if break is triggered.
Here, the loop stops as soon as it finds "Barcelona"
. The else
block is skipped because the loop does not terminate normally but is interrupted by the break
statement.
Swipe to show code editor
Imagine planning your travel within a fixed budget. This program dynamically calculates and prints the cost of each trip as long as your budget allows. Once the budget is exhausted, the else
statement provides a closing message confirming that all affordable trips have been planned.
This program demonstrates how to use the else
block with a while
loop effectively.
Expected Output:
Solução
Obrigado pelo seu feedback!
A Declaração Else em um Loop While
Em Python, o bloco else
pode ser adicionado a um loop while
. O bloco else
é executado quando o loop termina normalmente, ou seja, a condição do loop se torna False
sem encontrar uma declaração break
.
travel_list = ["Monako", "Luxemburg", "Liverpool", "Barcelona", "Munchen"] # Initialize index i = 0 # Iterate through the destinations while i < len(travel_list): print(travel_list[i]) i += 1 else: print("All destinations have been listed!")
Exemplo: Interrompendo o Loop
Se o loop terminar com uma declaração break
(por exemplo, quando uma cidade específica é encontrada), o bloco else
não é executado.
# List of travel destinations travel_list = ["Monako", "Luxemburg", "Liverpool", "Barcelona", "Munchen"] # Initialize index i = 0 # Search for a specific destination while i < len(travel_list): if travel_list[i] == "Barcelona": break print(travel_list[i]) i += 1 else: print("All destinations have been listed!") # This won't execute if break is triggered.
Here, the loop stops as soon as it finds "Barcelona"
. The else
block is skipped because the loop does not terminate normally but is interrupted by the break
statement.
Swipe to show code editor
Imagine planning your travel within a fixed budget. This program dynamically calculates and prints the cost of each trip as long as your budget allows. Once the budget is exhausted, the else
statement provides a closing message confirming that all affordable trips have been planned.
This program demonstrates how to use the else
block with a while
loop effectively.
Expected Output:
Solução
Obrigado pelo seu feedback!