Conditional Expression
#Example 03_07_2019 a = 35 if ( a > 5 ): print ( "the value of a is greater than 5 " ) elif ( a > 9 ) : print ( "the value of a is greater than 9 " ) elif ( a > 15 ) : print ( "the value of a is greater than 15 " ) elif ( a > 25 ) : print ( "the value of a is greater than 25 " ) else : print ( " The value is not grater than 5 and 9" ) # in this ladder only one statement will execute. a = 3 # there is no semicolon in Python, so it takes space automatically , it makes different from other language if ( a > 5 ): ### here indent will be a "Tab" or "4 space _ _ _ _" print ( "the value of a is greater than 5 " ) elif ( a > 9 ) : print ( "the value of a is greater than 9 " ) elif ( a > 15 ) : print ( "the value of a is greater than 15 " ) elif ( a >...