@Silver77 You should always try and formulate if/then/else constructs exhaustive and exclusive.
Exhaustive: Covers all cases. There is always one condition that gets True.
Exclusive: No overlaps. Exactly one condition gets True.
The syntax you shared is not exhaustive. You don't cover cases where Excercise is 3.25, missing or below zero.
... View more