What's the pythonic way to designate unreachable code in python as in:
gender = readFromDB(...) # either 'm' or 'f'
if gender == 'm':
greeting = 'Mr.'
elif gender == 'f':
greeting = 'Ms.'
else:
# What should this line say?
|
1
|
|||||||||
|
|
|
This depends on how sure you are of the gender being either If you're absolutely certain, use If there's any chance of malformed data, however, you should probably raise an exception to make testing and bug-fixing easier. You could use a gender-neutral greeting in this case, but for anything bigger, special values just make bugs harder to find. |
||||
|
|
|
It depends exactly what you want the error to signal, but I would use a dictionary in this case:
If gender is neither m nor f, this will raise a KeyError containing the unexpected value:
If you want more detail in the message, you can catch & reraise it:
|
||
|
|
|
|
I sometimes do:
I think this does a good job of telling a reader of the code that there are only (in this case) two possibilities, and what they are. Although you could make a case for raising a more descriptive error than AssertionError. |
||
|
|
|
|
I actually think that there's a place for this.
So you can do this
I think this is the most meaningful error message. This kind of thing can only arise through design errors (or bad maintenance, which is the same thing.) |
||
|
|
|
|
You could raise an exception:
or use an assert False if you expect the database to return only 'm' or 'f':
|
||||||
|
|
|
|
||
|