In Python, the break and continue statements, together are called ___ statement

35. In Python, the break and continue statements, together are called ___ statement.

  1. Jump
  2. goto
  3. compound
  4. None of the mentioned above

Answer: B) goto

Explanation:

With the goto statement in Python, we are basically telling the interpreter to skip over the current line of code and directly execute another one instead of the current line of code. You must place a check mark next to the line of code that you want the interpreter to execute at this time in the section labelled "target."

Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.