Computer Science, asked by ishika16629, 7 months ago

In Python, the flow of execution is altered by the use of _____ statements?​

Answers

Answered by grandmaster185
38

Answer:

by the use of control flow statement

mark this answer as a brainlist

Answered by qwsuccess
2

In Python, the flow of execution is altered by the use of control flow statements.

  • The flow of execution of a program is the order in which a program c.ode is executed.
  • There are three flow of execution: Sequential, Selection and Repetitive.
  • Sequential is the standard one in which one statement is executed one after the other.
  • Selective or decision making statements allows us to test several conditions and based on a true condition a set of instructions is executed.
  • Repetitive statements execute a set of instructions repetitively as long as the test condition remains true.
Similar questions