Computer Science, asked by raghav4711, 1 year ago

what are jump statement? name them in python .​

Answers

Answered by sneha7587
32

Jump statements cause an unconditional jump to another statement elsewhere in the code. They are used primarily to interrupt switch statements and loops. The jump statements are the goto statement, the continue statement, the break statement, and the return statement, which are discussed in the following sections.

Answered by Abci
11

statement that unconditionally transfers program control with in a function.

1. The break statement

2. The continue statement

I hope that helps you

Similar questions