Tutorial #6 : Decision Making With Example



Decision structures evaluate multiple expressions which produce TRUE or FALSE as outcome. You need to determine which action to take and which statements to execute if outcome is TRUE or FALSE otherwise.Python programming language assumes any non-zero and non-null values as TRUE, and if it is either zero or null, then it is assumed as FALSE value.

Single Statement Suites

If the suite of an if clause consists only of a single line, it may go on the same line as the header statement.
Example :-
var = 10
if ( var == 10 ) : print "Value of expression is 10"
print "Good bye!"

Comments