Is the following Python code valid?
try:
    # Do something
except:
    # Do something
else:
    # Do something
(a) no, there is no such thing as else
(b) no, else cannot be used with except
(c) no, else must come before except
(d) yes

Posted on by