Decision making is anticipation of conditions occurring while execution of the program and specifying actions taken according to the conditions. 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 provides following types of decision making statements :
An "if statement" is written by using the if keyword.
if expression: statement(s)
|
The else keyword catches anything which isn't caught by the preceding conditions.
if expression: statement(s)
else: statement(s)
|
It's a special area where you can find special questions and answers for CSE students or IT professionals. Also, In this section, we try to explain a topic in a very deep way.