Skip to content
This repository was archived by the owner on Jan 9, 2023. It is now read-only.

Latest commit

 

History

History

core_lesson4

Lesson 4 - Repeated Practice Makes Perfect

Ch2 Logical Operators

  • Logical operators
    • not
    • and
    • or
  • Used as part of the condition in if and while

Ch3 While Loops

  • Start with pass
  • Add increment statement for exit clause

Ch5 Breaks

  • Allows a quick exit from the loop

Ch8 Debugging

  • Find out where
  • Debug by bisection
    • Check potential problematic variable somewhere in the middle
    • See if the problem is on the top / bottom half