Computer Science, asked by tabimanna, 6 months ago

what do you understand by flow of execution in python? ​

Answers

Answered by rekhaadi76
2

Answer:

The Python interpreter reads a program just like you are reading this page: one line at a time, from left to right and top to bottom. The interpreter executes operations and functions in the order that it encounters them. This is called control flow or the flow of execution.

Similar questions