Decision making in Python involves anticipating conditions that may occur during program execution and specifying actions to take depending on whether those conditions evaluate to True or False. Decision structures evaluate multiple expressions that produce a Boolean outcome, requiring the programmer to determine which statements to execute based on that outcome.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
56 views
Python#2
Decision making in Python involves anticipating conditions that may occur during program execution and specifying actions to take depending on whether those conditions evaluate to True or False. Decision structures evaluate multiple expressions that produce a Boolean outcome, requiring the programmer to determine which statements to execute based on that outcome.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1
2. Define decision-making in Python?
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.