Topic 4 - Making Decisions

This is a large topic and is broken to 4 parts. Please complete each section along with the practice exercises.

Topic 4 - Making Decisions

Please complete each of the four parts. Here is a brief list of what each part covers:

Topic 4a - Basic If Statements with Numeric Comparisons

  • Learn the structure of an if statement, and how to use numeric comparison operators.

  • Exercises involve inputting some scores, and comparing them in various ways

Topic 4b - If Statements with AND and OR Operators

  • Learn how to test for more than one condition at a time.

  • Add to the practice exercises from Topic 4a by lookin for some more complicated scenarios.

  • Begin to make a ChatBot v1.0 to take over the world (or at least steal some credit card numbers).

Topic 4c - Compare text and Using the 'else' Clause

  • Compare text that is case sensitive and not when appropriate.

  • Use the 'else' clause to run code when your condition is false.

  • Choose three of the programming exercises and complete them.

Topic 4d - If/Elif/Else Statements