How does break work in a for loop?

后端 未结 2 1282
失恋的感觉
失恋的感觉 2021-01-16 00:26

I am new in Python and I got confused about the way that \"break\" works in a for loop. There is an example in Python documentation(break and continue Statements) which calc

2条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-16 00:47

    Sure - Simply put out-denting the "Break" means it's no longer subject to the "if" that precedes it.

    The code reads the if statement, acts on it, and then regardless of whether that if statement is true or false, it executes the "break" and drops out of the for loop.

    In the first example the code only drops out of the 'for' loop if the n%x==0 statement is true.

提交回复
热议问题