Question 448: Consider the following Python code:try: result = 10 / 0 except ZeroDivisionError: result = "Error: Division by zero"What will be the value of "result" after the execution of this code?
tcs
wipro
infosys
general
aptitude
exception-handling
The code attempts to divide by zero, which raises aZeroDivisionError. The exception is caught, and "result" is assigned the string "Error: Division by zero."