python how to continue a while loop
To continue a while loop in Python, you can use the "continue" keyword. Here's an example:
i = 0
while i < 10:
i += 1
if i % 2 == 0:
continue
print(i)
In this example, the loop will continue as long as the value of "i" is less than 10. Each time the loop runs, "i" is incremented by 1. If "i" is even (i.e. if the remainder when dividing by 2 is 0), the "continue" keyword is used to skip the rest of the code in the loop and move on to the next iteration. If "i" is odd, the value is printed to the console
原文地址: https://www.cveoy.top/t/topic/cygP 著作权归作者所有。请勿转载和采集!