Q3 today! As usual, it's up 5 min prior to the start of class so you can begin work right away.
Some New Tidbits
Assignment Trickery Python has an amusing bag of tricks here and I will show a couple of 'em.
Docstrings Help me if you can, I'm feelin' down. And I do appreiciate your bein' round.....
math
Conditional Logic
Last time you met the simple if
Today you will meet two new boss statements,
else and elif.
Simple if This allows us
to selectively hop across code.
Simple if with else
This allows us to have something happen if an if skips
code.
elif This implements multiway
conditional logic.
The Python Ternary Opearator
A Reason to Upgrade to Python 3.10
The match statement