LaunchCode logo
  1. Contents
  2. 6. Making Decisions With Conditionals

6. Making Decisions With ConditionalsΒΆ

  • 6.1. Decision Making
  • 6.2. Data Type for True/False
    • 6.2.1. Identify True and False
      • 6.2.1.1. Boolean Values
      • 6.2.1.2. Data Type Review
  • 6.3. Boolean Expressions
    • 6.3.1. Testing for Equality
    • 6.3.2. Other Comparisons
    • 6.3.3. Check Your Understanding
  • 6.4. Can We Do Math with Boolean Values?
  • 6.5. Conditionals
    • 6.5.1. if Statements
    • 6.5.2. else Clause
    • 6.5.3. Check Your Understanding
  • 6.6. Logical Operators
    • 6.6.1. Logical and
    • 6.6.2. Logical or
    • 6.6.3. Logical not
    • 6.6.4. Longer Combinations
    • 6.6.5. Check Your Understanding
  • 6.7. Truth Tables
    • 6.7.1. Truth Table for and
    • 6.7.2. Truth Table for or
    • 6.7.3. Order of Operations
      • 6.7.3.1. Table of Operator Order
    • 6.7.4. Check Your Understanding
  • 6.8. Nested Conditionals
    • 6.8.1. Nesting Also Works With else
    • 6.8.2. Check Your Understanding
  • 6.9. Chained Conditionals
    • 6.9.1. elif Statements
      • 6.9.1.1. Multiple elif Statements
    • 6.9.2. Nested vs. Chained Conditionals
    • 6.9.3. Check Your Understanding
  • 6.10. Exercises: Booleans and Conditionals
    • 6.10.1. Submitting Your Work
  • ← 5.10. Studio: Data and Variables
  • 6.1. Decision Making →

Back to top