março 19, 2024março 19, 2024 O que é a instrução continue em Python? (What is continue statement in Python?) Em Português: Em Python, a instrução continue é usada dentro de loops para pular a iteração atual e prosseguir para a próxima. Ela afeta apenas a iteração atual e não termina o loop. Veja como você pode usá-la: for i in range(10): if i == 5: continue # Pula o resto do código dentro do loop para esta iteração print(i) Neste exemplo, quando i é igual a 5, a instrução continue é executada, o que faz com que o loop pule o resto de seu corpo e prossiga com a próxima iteração. Como resultado, o número 5 não é impresso, e a saída será números de 0 a 4 e depois de 6 a 9. A instrução continue é útil quando você deseja ignorar certos elementos ou condições dentro de um loop sem interromper completamente o loop. In English: In Python, the continue statement is used within loops to skip the current iteration and move on to the next one. It only affects the current iteration and does not terminate the loop. Here’s how you can use it: for i in range(10): if i == 5: continue # Skip the rest of the code inside the loop for this iteration print(i) In this example, when i equals 5, the continue statement is executed, which causes the loop to skip the rest of its body and proceed with the next iteration. As a result, the number 5 is not printed, and the output will be numbers from 0 to 4, and then 6 to 9. The continue statement is useful when you want to skip over certain elements or conditions within a loop without breaking out of the loop entirely. References: [1]D. Prasad, “Python continue Explained [Beginners Guide] | GoLinuxCloud,” GoLinuxCloud, Jan. 09, 2024. [Online]. Available: https://www.golinuxcloud.com/python-continue/ [2]“Python Continue Statement.” [Online]. Available: https://www.tutorialspoint.com/python/python_continue_statement.htm [3]“Python continue Keyword.” [Online]. Available: https://www.w3schools.com/python/ref_keyword_continue.asp [4]GfG, “Python Continue Statement,” GeeksforGeeks, May 09, 2023. [Online]. Available: https://www.geeksforgeeks.org/python-continue-statement/ Linguagens (languages) Python