MCQ Practice
Single Best Answer
Topic: Python Errors and Exceptions Handling
Q
What will be the output after the following statements?
def abc(x):
try:
print(20 / x)
except:
print('Not a valid argument', end=' ')
print(abc(0))
Subchapter
Python Errors and Exceptions Handling
Action
Choose one option below