What will be the output of the following code?
try: result = 10 / 0except ZeroDivisionError: result = "Infinity"
print(result)
10
"Infinity"
ZeroDivisionError
None
This question is part of this quiz :