Computer Science, asked by jivikasachdeva358, 6 months ago

in python the flow of execution is altered by the use of ....................................... statements

Answers

Answered by khushigupta90
50

Answer:

Statements are executed one at a time, in order from top to bottom. Function definitions do not alter the flow of execution of the program, but remember that statements inside the function are not executed until the function is called. ... When it gets to the end of the program, it terminates.

Answered by avnicambridge9
2

Control Statements

the user may need to change the order of execution by skipping or repeating a few statements, this alteration in the flow of execution is done by the use of control statement.

Similar questions