Best post on conditional statements in python – Part 2

conditional statements in python

Remaining conditional statements in python Python programming consists of various types of decision making statements. Conditional statements in python: if statementif-else statementif-elif-else statementif-elif-elif-else statement(multiple elif)Nested if statement if-elif-elif-else statement (multiple elif) We use elif block for multipath decision making. This conditional statements in python allows us to mention condition similar to if statement. In this … Read more

Best post on conditional statements in python – Part 1

conditional statements

What are conditional statements in python? Generally we are writing straight line programs in which statements are executed one after another till end of line character. Conditional statements are also known as branching statements or decision making statements. In conditional statements an expression or condition is tested and depending on the test condition it returns … Read more