PCEP Computer Programming and Python Fundamentals • Set 7
PCEP Computer Programming and Python Fundamentals Practice Test 7 — 15 questions with explanations. Free, no signup.
Refer to the exhibit. Which of the following is true about the output?
try:
x = int("abc")
except ValueError as e:
print("Error:", e)
finally:
print("Done")