KnowledgeBoat Logo

Computer Science

What are jump statements? Name them.

Python Control Flow

12 Likes

Answer

Jump statements are used to unconditionally transfer program control to other parts within a program. Python provides the below jump statements:

  1. break
  2. continue

Answered By

6 Likes


Related Questions