To jump out of a loop, we should use ______.
A: break
B: continue
C: else
D: pass
A: break
B: continue
C: else
D: pass
举一反三
- To end this cycle and start the next cycle, we should use the ( ) statement. A: break B: continue C: else D: pass
- Use the 'iterate'<br/>statement for the current loop statement to jump out of the loop.( <br/>)
- 用于跳出循环的命令是( )。 A: break B: continue C: else D: pass
- 在循环语句中,( )语句的作用是提前进入下一次循环。 A: break B: continue C: loop D: pass
- Among the following options, the correct descriptions inclue ______. A: pass represents an empty operation, only plays a place-occupied role B: pass can only be used in conditional statements C: For the statement sequence under if, it is allowed that there is only one pass statement D: pass can be used to jump out of the loop statement