Computer Science
What are jump statements? Name them.
Python Control Flow
14 Likes
Answer
Jump statements are used to unconditionally transfer program control to other parts within a program. Python provides the below jump statements:
- break
- continue
Answered By
6 Likes