Is the following Python code valid?
try:
# Do something
except:
# Do something
else:
# Do something
try:
# Do something
except:
# Do something
else:
# Do somethingA. 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
Answer: Option D

Join The Discussion