Python Decision Making Structure
Rushikesh J.
QA Automation Engineer @Vinz Global | Robot Framework | Manual Testing, Automation Testing | Python | Selenium | GIT | JIRA | Immediate Joiner | API Testing Using Postman | Jenkins
The structure in which we provide a condition, on the basis of condition, a statement or set of statement is execute.
We can use decision making structure, in which our code decide to execute statement OR set of statements? according to given? condition.
Examples:
Display a message “Congratulation, you can take participant in this program”, if person age is 18 or greater than 18
Display message ”Welcome” if day is Friday
Display message, “you are eligible for the admission of MCS”, if your marks greater than 1000
Show a message “It is even number” if user input a number that divisible by 2.
There are different decision making structure used in Python:
Following types of decision making structure, work with given condition
?if statement
?if...else statement
?Nest if statement
?if elif else statement.
if statement
It take a condition, if condition is true, then it execute a statement or set of statement.
if condition is false, no thing to display.
Syntax
if (expression/condition):
? Statement or set of statement
Example
marks =60;
if? (marks > 70):
? print("Qualified for admission")