Control Flow
Control Flow.
According to the structure theorem, any computer program can be written using the basic control structures . A control structure (or flow of control) is a block of programming that analyses variables and chooses a direction in which to go based on given parameters.
In simple sentence, a control structure is just a decision that the computer makes. So, it is the basic decision-making process in programming and flow of control determines how a computer program will respond when given certain conditions and parameters.
There are two basic aspects of computer programming:
Data.
Instructions .
To work with data, you need to understand variables and data types;
To work with instructions, you need to understand control structures and statements.
There are six basic flow controls used in Python programming.
if
for
while
break
continue
pass
Thank you very much for reading carefully, if you have any other questions, you can share it with us through comments, if this information was important to you, please let us know through comments.
Please do comment and share.
Thank You.

Comments
Post a Comment