what do you understand by flow of execution in python?
Answers
Answered by
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