-
Rate Gain thinks this is interesting:
Can you replace
elif
with a sequence of if-else
combinations? You can in some situations, but it depends on how each if/else
is written. It also means that Python will check every if-else
combination, rather than just the first false ones like it would with if-elif-else
. Try to make some of these to figure out the differences.
Minimise