SlideShare a Scribd company logo
1 of 12
 A conditional is what we refer to as a decision
structure. Where a decision is made is based upon a
set of rules. We mainly will be working with the
if…then.
 Ie. If an event occurs then a certain outcome will
happen.
 Ex. If it rains, then I will wear a rain coat.
 Conditional arguments are Boolean expressions.
 Question: Meaning???
 We use relational operators to form Boolean expressions.
 Operator Meaning
 == equal to
 < less than
 <= less than or equals to
 > greater than
 >= greater than or equal to
 != not equal to
 Common Mistake: Confusing = with ==
 Code:
Creating a decision structure:
if (expression):
statement
 To execute more than one statement in a block they must
be indented equally:
if (score > 90):
grade = 'A'
print(“Good Job!n”)
 Good Programming: Commenting conditional blocks
 Common Mistakes: Forgetting equal indent, forgetting :,
and forgetting space after if
Space
Indent
 We can nest conditional statements to have
several decision structures within one statement.
 This allows an application to check multiple
situations for 1 desired outcome
 Allows us to simplify code by not having as
many separate if statements.
 Ie. If an event occurs then a certain outcome will
happen, else do something different
 Ex.
 If it rains, then I will wear a rain coat else I don’t need a
jacket.
 Flipping a coin if not heads it must be tails(100% outcomes)
Creating a nested conditional:
 if (condition):
statement
else:
statement
 Good Programming: We usually line up else with
the preceding if to make it easier to find errors.
 Question: Be careful testing real numbers for
equality, why?
 We can nest conditional statements to have
several decision structures within one
statement in order to test various situations for
a desired result.
 Ie. If an event occurs then a certain outcome will
happen Or else if this happens do this or else do
something else
 We can nest as many ElseIf’s together but each set
of conditionals can have only one Else statement
otherwise it will create a logical error
 Ex.
 If it rains, then I will wear a rain coat else if it snows then I
will wear gloves or else I won’t need a jacket.
 Rolling a die 1,2,3,4,5,6 if lands on 1 don’t need to check
other sides b/c 100% of outcomes
Creating a nested conditional:
 if (condition):
Statement
elif (condition):
Statement
elif (condition):
Statement
Statement
else:
Statement
 Common Errors: Not Lining up Else with its preceding If.
 Question: Why is a trailing else good programming?
Question: What zodiac sign is it for the current year?
Decision Structures

More Related Content

Viewers also liked

Variables and Expressions
Variables and ExpressionsVariables and Expressions
Variables and Expressionsprimeteacher32
 
Conditional Loops Python
Conditional Loops PythonConditional Loops Python
Conditional Loops Pythonprimeteacher32
 
For Loops and Nesting in Python
For Loops and Nesting in PythonFor Loops and Nesting in Python
For Loops and Nesting in Pythonprimeteacher32
 
July 30 2010 "BEYOND REALITY" Announcement
July 30 2010 "BEYOND REALITY" AnnouncementJuly 30 2010 "BEYOND REALITY" Announcement
July 30 2010 "BEYOND REALITY" Announcementtest
 
Software for the new COMPASS data acquisition system
Software for the new COMPASS data acquisition systemSoftware for the new COMPASS data acquisition system
Software for the new COMPASS data acquisition systembodlosh
 
логисто
логистологисто
логистоBDA
 
CERTIFICAT . UCL
CERTIFICAT . UCLCERTIFICAT . UCL
CERTIFICAT . UCLsara hanna
 
يجب اتباع الخطوات التالية حتى تكون الزيارة الاولى للمركز ناجحة لابنائنا من ذ...
 يجب اتباع الخطوات التالية حتى تكون الزيارة الاولى للمركز ناجحة لابنائنا من ذ... يجب اتباع الخطوات التالية حتى تكون الزيارة الاولى للمركز ناجحة لابنائنا من ذ...
يجب اتباع الخطوات التالية حتى تكون الزيارة الاولى للمركز ناجحة لابنائنا من ذ...Osama Madbooly
 

Viewers also liked (17)

Input
InputInput
Input
 
Computer Logic
Computer LogicComputer Logic
Computer Logic
 
Formatting Output
Formatting  OutputFormatting  Output
Formatting Output
 
Variables and Expressions
Variables and ExpressionsVariables and Expressions
Variables and Expressions
 
Conditional Loops Python
Conditional Loops PythonConditional Loops Python
Conditional Loops Python
 
Logical Operators
Logical OperatorsLogical Operators
Logical Operators
 
For Loops and Nesting in Python
For Loops and Nesting in PythonFor Loops and Nesting in Python
For Loops and Nesting in Python
 
July 30 2010 "BEYOND REALITY" Announcement
July 30 2010 "BEYOND REALITY" AnnouncementJuly 30 2010 "BEYOND REALITY" Announcement
July 30 2010 "BEYOND REALITY" Announcement
 
Diagnostico
DiagnosticoDiagnostico
Diagnostico
 
Software for the new COMPASS data acquisition system
Software for the new COMPASS data acquisition systemSoftware for the new COMPASS data acquisition system
Software for the new COMPASS data acquisition system
 
Feliz 2009 Mafalda
Feliz 2009 MafaldaFeliz 2009 Mafalda
Feliz 2009 Mafalda
 
логисто
логистологисто
логисто
 
CERTIFICAT . UCL
CERTIFICAT . UCLCERTIFICAT . UCL
CERTIFICAT . UCL
 
p8-9
p8-9p8-9
p8-9
 
Bootcamp pt
Bootcamp ptBootcamp pt
Bootcamp pt
 
يجب اتباع الخطوات التالية حتى تكون الزيارة الاولى للمركز ناجحة لابنائنا من ذ...
 يجب اتباع الخطوات التالية حتى تكون الزيارة الاولى للمركز ناجحة لابنائنا من ذ... يجب اتباع الخطوات التالية حتى تكون الزيارة الاولى للمركز ناجحة لابنائنا من ذ...
يجب اتباع الخطوات التالية حتى تكون الزيارة الاولى للمركز ناجحة لابنائنا من ذ...
 
poesia
poesiapoesia
poesia
 

Similar to Decision Structures

Similar to Decision Structures (20)

Conditionals
ConditionalsConditionals
Conditionals
 
Nesting Conditionals
Nesting ConditionalsNesting Conditionals
Nesting Conditionals
 
Decision making and branching
Decision making and branchingDecision making and branching
Decision making and branching
 
Fcp chapter 2 upto_if_else (2)
Fcp chapter 2 upto_if_else (2)Fcp chapter 2 upto_if_else (2)
Fcp chapter 2 upto_if_else (2)
 
Constructs (Programming Methodology)
Constructs (Programming Methodology)Constructs (Programming Methodology)
Constructs (Programming Methodology)
 
C Constructs (C Statements & Loop)
C Constructs (C Statements & Loop)C Constructs (C Statements & Loop)
C Constructs (C Statements & Loop)
 
C statements.ppt presentation in c language
C statements.ppt presentation in c languageC statements.ppt presentation in c language
C statements.ppt presentation in c language
 
Vb decision making statements
Vb decision making statementsVb decision making statements
Vb decision making statements
 
Conditional statements in sas
Conditional statements in sasConditional statements in sas
Conditional statements in sas
 
Control Statement programming
Control Statement programmingControl Statement programming
Control Statement programming
 
Decision statements
Decision statementsDecision statements
Decision statements
 
BSc. III Unit iii VB.NET
BSc. III Unit iii VB.NETBSc. III Unit iii VB.NET
BSc. III Unit iii VB.NET
 
Programming (if else)
Programming (if else)Programming (if else)
Programming (if else)
 
Chapter 05
Chapter 05Chapter 05
Chapter 05
 
Chapter 8 - Conditional Statement
Chapter 8 - Conditional StatementChapter 8 - Conditional Statement
Chapter 8 - Conditional Statement
 
Flow control in c++
Flow control in c++Flow control in c++
Flow control in c++
 
nuts and bolts of c++
nuts and bolts of c++nuts and bolts of c++
nuts and bolts of c++
 
Creating decision structures of a program
Creating decision structures of a programCreating decision structures of a program
Creating decision structures of a program
 
Decision structures chpt_5
Decision structures chpt_5Decision structures chpt_5
Decision structures chpt_5
 
jhtp9_ch04.ppt
jhtp9_ch04.pptjhtp9_ch04.ppt
jhtp9_ch04.ppt
 

More from primeteacher32

More from primeteacher32 (20)

Software Development Life Cycle
Software Development Life CycleSoftware Development Life Cycle
Software Development Life Cycle
 
Variable Scope
Variable ScopeVariable Scope
Variable Scope
 
Returning Data
Returning DataReturning Data
Returning Data
 
Intro to Functions
Intro to FunctionsIntro to Functions
Intro to Functions
 
Introduction to GUIs with guizero
Introduction to GUIs with guizeroIntroduction to GUIs with guizero
Introduction to GUIs with guizero
 
Function Parameters
Function ParametersFunction Parameters
Function Parameters
 
Nested Loops
Nested LoopsNested Loops
Nested Loops
 
Conditional Loops
Conditional LoopsConditional Loops
Conditional Loops
 
Introduction to Repetition Structures
Introduction to Repetition StructuresIntroduction to Repetition Structures
Introduction to Repetition Structures
 
Input Validation
Input ValidationInput Validation
Input Validation
 
Windows File Systems
Windows File SystemsWindows File Systems
Windows File Systems
 
Intro to Python with GPIO
Intro to Python with GPIOIntro to Python with GPIO
Intro to Python with GPIO
 
Variables and Statements
Variables and StatementsVariables and Statements
Variables and Statements
 
Variables and User Input
Variables and User InputVariables and User Input
Variables and User Input
 
Intro to Python
Intro to PythonIntro to Python
Intro to Python
 
Raspberry Pi
Raspberry PiRaspberry Pi
Raspberry Pi
 
Hardware vs. Software Presentations
Hardware vs. Software PresentationsHardware vs. Software Presentations
Hardware vs. Software Presentations
 
Block chain security
Block chain securityBlock chain security
Block chain security
 
Hashes
HashesHashes
Hashes
 
System Administration
System AdministrationSystem Administration
System Administration
 

Recently uploaded

Delhi Call Girls Greater Noida 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Greater Noida 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Greater Noida 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Greater Noida 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
Neha +91-9537192988-Friendly Ahmedabad Call Girls has Complete Authority for ...
Neha +91-9537192988-Friendly Ahmedabad Call Girls has Complete Authority for ...Neha +91-9537192988-Friendly Ahmedabad Call Girls has Complete Authority for ...
Neha +91-9537192988-Friendly Ahmedabad Call Girls has Complete Authority for ...Niya Khan
 
VIP Russian Call Girls in Bhilai Deepika 8250192130 Independent Escort Servic...
VIP Russian Call Girls in Bhilai Deepika 8250192130 Independent Escort Servic...VIP Russian Call Girls in Bhilai Deepika 8250192130 Independent Escort Servic...
VIP Russian Call Girls in Bhilai Deepika 8250192130 Independent Escort Servic...Suhani Kapoor
 
VIP High Profile Call Girls Jamshedpur Aarushi 8250192130 Independent Escort ...
VIP High Profile Call Girls Jamshedpur Aarushi 8250192130 Independent Escort ...VIP High Profile Call Girls Jamshedpur Aarushi 8250192130 Independent Escort ...
VIP High Profile Call Girls Jamshedpur Aarushi 8250192130 Independent Escort ...Suhani Kapoor
 
Delhi Call Girls South Ex 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls South Ex 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls South Ex 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls South Ex 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...
VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...
VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...Suhani Kapoor
 
Final Completion Certificate of Marketing Management Internship
Final Completion Certificate of Marketing Management InternshipFinal Completion Certificate of Marketing Management Internship
Final Completion Certificate of Marketing Management InternshipSoham Mondal
 
The Impact of Socioeconomic Status on Education.pdf
The Impact of Socioeconomic Status on Education.pdfThe Impact of Socioeconomic Status on Education.pdf
The Impact of Socioeconomic Status on Education.pdftheknowledgereview1
 
Dubai Call Girls Demons O525547819 Call Girls IN DUbai Natural Big Boody
Dubai Call Girls Demons O525547819 Call Girls IN DUbai Natural Big BoodyDubai Call Girls Demons O525547819 Call Girls IN DUbai Natural Big Boody
Dubai Call Girls Demons O525547819 Call Girls IN DUbai Natural Big Boodykojalkojal131
 
Low Rate Call Girls Cuttack Anika 8250192130 Independent Escort Service Cuttack
Low Rate Call Girls Cuttack Anika 8250192130 Independent Escort Service CuttackLow Rate Call Girls Cuttack Anika 8250192130 Independent Escort Service Cuttack
Low Rate Call Girls Cuttack Anika 8250192130 Independent Escort Service CuttackSuhani Kapoor
 
OSU毕业证留学文凭,制做办理
OSU毕业证留学文凭,制做办理OSU毕业证留学文凭,制做办理
OSU毕业证留学文凭,制做办理cowagem
 
Résumé (2 pager - 12 ft standard syntax)
Résumé (2 pager -  12 ft standard syntax)Résumé (2 pager -  12 ft standard syntax)
Résumé (2 pager - 12 ft standard syntax)Soham Mondal
 
VIP Call Girls Service Cuttack Aishwarya 8250192130 Independent Escort Servic...
VIP Call Girls Service Cuttack Aishwarya 8250192130 Independent Escort Servic...VIP Call Girls Service Cuttack Aishwarya 8250192130 Independent Escort Servic...
VIP Call Girls Service Cuttack Aishwarya 8250192130 Independent Escort Servic...Suhani Kapoor
 
VIP Call Girl Bhiwandi Aashi 8250192130 Independent Escort Service Bhiwandi
VIP Call Girl Bhiwandi Aashi 8250192130 Independent Escort Service BhiwandiVIP Call Girl Bhiwandi Aashi 8250192130 Independent Escort Service Bhiwandi
VIP Call Girl Bhiwandi Aashi 8250192130 Independent Escort Service BhiwandiSuhani Kapoor
 
VIP Russian Call Girls Amravati Chhaya 8250192130 Independent Escort Service ...
VIP Russian Call Girls Amravati Chhaya 8250192130 Independent Escort Service ...VIP Russian Call Girls Amravati Chhaya 8250192130 Independent Escort Service ...
VIP Russian Call Girls Amravati Chhaya 8250192130 Independent Escort Service ...Suhani Kapoor
 
Employee of the Month - Samsung Semiconductor India Research
Employee of the Month - Samsung Semiconductor India ResearchEmployee of the Month - Samsung Semiconductor India Research
Employee of the Month - Samsung Semiconductor India ResearchSoham Mondal
 
VIP Call Girls Service Jamshedpur Aishwarya 8250192130 Independent Escort Ser...
VIP Call Girls Service Jamshedpur Aishwarya 8250192130 Independent Escort Ser...VIP Call Girls Service Jamshedpur Aishwarya 8250192130 Independent Escort Ser...
VIP Call Girls Service Jamshedpur Aishwarya 8250192130 Independent Escort Ser...Suhani Kapoor
 
Dubai Call Girls Naija O525547819 Call Girls In Dubai Home Made
Dubai Call Girls Naija O525547819 Call Girls In Dubai Home MadeDubai Call Girls Naija O525547819 Call Girls In Dubai Home Made
Dubai Call Girls Naija O525547819 Call Girls In Dubai Home Madekojalkojal131
 
Internshala Student Partner 6.0 Jadavpur University Certificate
Internshala Student Partner 6.0 Jadavpur University CertificateInternshala Student Partner 6.0 Jadavpur University Certificate
Internshala Student Partner 6.0 Jadavpur University CertificateSoham Mondal
 
Dark Dubai Call Girls O525547819 Skin Call Girls Dubai
Dark Dubai Call Girls O525547819 Skin Call Girls DubaiDark Dubai Call Girls O525547819 Skin Call Girls Dubai
Dark Dubai Call Girls O525547819 Skin Call Girls Dubaikojalkojal131
 

Recently uploaded (20)

Delhi Call Girls Greater Noida 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Greater Noida 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Greater Noida 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Greater Noida 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
Neha +91-9537192988-Friendly Ahmedabad Call Girls has Complete Authority for ...
Neha +91-9537192988-Friendly Ahmedabad Call Girls has Complete Authority for ...Neha +91-9537192988-Friendly Ahmedabad Call Girls has Complete Authority for ...
Neha +91-9537192988-Friendly Ahmedabad Call Girls has Complete Authority for ...
 
VIP Russian Call Girls in Bhilai Deepika 8250192130 Independent Escort Servic...
VIP Russian Call Girls in Bhilai Deepika 8250192130 Independent Escort Servic...VIP Russian Call Girls in Bhilai Deepika 8250192130 Independent Escort Servic...
VIP Russian Call Girls in Bhilai Deepika 8250192130 Independent Escort Servic...
 
VIP High Profile Call Girls Jamshedpur Aarushi 8250192130 Independent Escort ...
VIP High Profile Call Girls Jamshedpur Aarushi 8250192130 Independent Escort ...VIP High Profile Call Girls Jamshedpur Aarushi 8250192130 Independent Escort ...
VIP High Profile Call Girls Jamshedpur Aarushi 8250192130 Independent Escort ...
 
Delhi Call Girls South Ex 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls South Ex 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls South Ex 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls South Ex 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...
VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...
VIP Call Girls Firozabad Aaradhya 8250192130 Independent Escort Service Firoz...
 
Final Completion Certificate of Marketing Management Internship
Final Completion Certificate of Marketing Management InternshipFinal Completion Certificate of Marketing Management Internship
Final Completion Certificate of Marketing Management Internship
 
The Impact of Socioeconomic Status on Education.pdf
The Impact of Socioeconomic Status on Education.pdfThe Impact of Socioeconomic Status on Education.pdf
The Impact of Socioeconomic Status on Education.pdf
 
Dubai Call Girls Demons O525547819 Call Girls IN DUbai Natural Big Boody
Dubai Call Girls Demons O525547819 Call Girls IN DUbai Natural Big BoodyDubai Call Girls Demons O525547819 Call Girls IN DUbai Natural Big Boody
Dubai Call Girls Demons O525547819 Call Girls IN DUbai Natural Big Boody
 
Low Rate Call Girls Cuttack Anika 8250192130 Independent Escort Service Cuttack
Low Rate Call Girls Cuttack Anika 8250192130 Independent Escort Service CuttackLow Rate Call Girls Cuttack Anika 8250192130 Independent Escort Service Cuttack
Low Rate Call Girls Cuttack Anika 8250192130 Independent Escort Service Cuttack
 
OSU毕业证留学文凭,制做办理
OSU毕业证留学文凭,制做办理OSU毕业证留学文凭,制做办理
OSU毕业证留学文凭,制做办理
 
Résumé (2 pager - 12 ft standard syntax)
Résumé (2 pager -  12 ft standard syntax)Résumé (2 pager -  12 ft standard syntax)
Résumé (2 pager - 12 ft standard syntax)
 
VIP Call Girls Service Cuttack Aishwarya 8250192130 Independent Escort Servic...
VIP Call Girls Service Cuttack Aishwarya 8250192130 Independent Escort Servic...VIP Call Girls Service Cuttack Aishwarya 8250192130 Independent Escort Servic...
VIP Call Girls Service Cuttack Aishwarya 8250192130 Independent Escort Servic...
 
VIP Call Girl Bhiwandi Aashi 8250192130 Independent Escort Service Bhiwandi
VIP Call Girl Bhiwandi Aashi 8250192130 Independent Escort Service BhiwandiVIP Call Girl Bhiwandi Aashi 8250192130 Independent Escort Service Bhiwandi
VIP Call Girl Bhiwandi Aashi 8250192130 Independent Escort Service Bhiwandi
 
VIP Russian Call Girls Amravati Chhaya 8250192130 Independent Escort Service ...
VIP Russian Call Girls Amravati Chhaya 8250192130 Independent Escort Service ...VIP Russian Call Girls Amravati Chhaya 8250192130 Independent Escort Service ...
VIP Russian Call Girls Amravati Chhaya 8250192130 Independent Escort Service ...
 
Employee of the Month - Samsung Semiconductor India Research
Employee of the Month - Samsung Semiconductor India ResearchEmployee of the Month - Samsung Semiconductor India Research
Employee of the Month - Samsung Semiconductor India Research
 
VIP Call Girls Service Jamshedpur Aishwarya 8250192130 Independent Escort Ser...
VIP Call Girls Service Jamshedpur Aishwarya 8250192130 Independent Escort Ser...VIP Call Girls Service Jamshedpur Aishwarya 8250192130 Independent Escort Ser...
VIP Call Girls Service Jamshedpur Aishwarya 8250192130 Independent Escort Ser...
 
Dubai Call Girls Naija O525547819 Call Girls In Dubai Home Made
Dubai Call Girls Naija O525547819 Call Girls In Dubai Home MadeDubai Call Girls Naija O525547819 Call Girls In Dubai Home Made
Dubai Call Girls Naija O525547819 Call Girls In Dubai Home Made
 
Internshala Student Partner 6.0 Jadavpur University Certificate
Internshala Student Partner 6.0 Jadavpur University CertificateInternshala Student Partner 6.0 Jadavpur University Certificate
Internshala Student Partner 6.0 Jadavpur University Certificate
 
Dark Dubai Call Girls O525547819 Skin Call Girls Dubai
Dark Dubai Call Girls O525547819 Skin Call Girls DubaiDark Dubai Call Girls O525547819 Skin Call Girls Dubai
Dark Dubai Call Girls O525547819 Skin Call Girls Dubai
 

Decision Structures

  • 1.
  • 2.  A conditional is what we refer to as a decision structure. Where a decision is made is based upon a set of rules. We mainly will be working with the if…then.  Ie. If an event occurs then a certain outcome will happen.  Ex. If it rains, then I will wear a rain coat.
  • 3.  Conditional arguments are Boolean expressions.  Question: Meaning???  We use relational operators to form Boolean expressions.  Operator Meaning  == equal to  < less than  <= less than or equals to  > greater than  >= greater than or equal to  != not equal to  Common Mistake: Confusing = with ==
  • 4.  Code: Creating a decision structure: if (expression): statement  To execute more than one statement in a block they must be indented equally: if (score > 90): grade = 'A' print(“Good Job!n”)  Good Programming: Commenting conditional blocks  Common Mistakes: Forgetting equal indent, forgetting :, and forgetting space after if Space Indent
  • 5.
  • 6.  We can nest conditional statements to have several decision structures within one statement.  This allows an application to check multiple situations for 1 desired outcome  Allows us to simplify code by not having as many separate if statements.  Ie. If an event occurs then a certain outcome will happen, else do something different  Ex.  If it rains, then I will wear a rain coat else I don’t need a jacket.  Flipping a coin if not heads it must be tails(100% outcomes)
  • 7. Creating a nested conditional:  if (condition): statement else: statement  Good Programming: We usually line up else with the preceding if to make it easier to find errors.  Question: Be careful testing real numbers for equality, why?
  • 8.
  • 9.  We can nest conditional statements to have several decision structures within one statement in order to test various situations for a desired result.  Ie. If an event occurs then a certain outcome will happen Or else if this happens do this or else do something else  We can nest as many ElseIf’s together but each set of conditionals can have only one Else statement otherwise it will create a logical error  Ex.  If it rains, then I will wear a rain coat else if it snows then I will wear gloves or else I won’t need a jacket.  Rolling a die 1,2,3,4,5,6 if lands on 1 don’t need to check other sides b/c 100% of outcomes
  • 10. Creating a nested conditional:  if (condition): Statement elif (condition): Statement elif (condition): Statement Statement else: Statement  Common Errors: Not Lining up Else with its preceding If.  Question: Why is a trailing else good programming?
  • 11. Question: What zodiac sign is it for the current year?