Week 8 subject 1: if - elif - else
if condition:actions...if condition:actions...else:other actions...if condition1:actions...elif condition2:more actionselif condition3:more actionselse: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:
Post a Comment