13/12/2025

Week 8 Learning Summary

 Week 8 subject 1: if - elif - else

if condition:
    actions...

if condition:
    actions...
else:
    other actions...

if condition1:
    actions...
elif condition2:
    more actions
elif condition3:
    more actions
else:
    other actions
  • Pay special attention to indentation and ":"
  • It's wise to always include an else.  Why?

Week 8 subject 2: match - case

match condition:

    case value1:

        actions...

    case value2:

        more actions...

    case value3:

        more actions...

    case _:

        other actions...

No comments: