Lesson 28
Match Statement
Pattern matching power!
match
Cleaner Than Elif!
Match is perfect for checking many values!
New in Python 3.10!
match day: case "Monday": print("Start of week!") case "Friday": print("Almost weekend!") case _: print("Just another day")
The underscore _ matches anything (like else)!