दिए गए पायथन कोड के लिए आउटपुट क्या है?
try:
a=10/0;
except (ArithmeticError, IOError) as e:
print(e)
else:
print("Successfully Done")
1
division by zero
2
Successfully Done
3
IOError
4
Compile-time error
दिए गए पायथन कोड के लिए आउटपुट क्या है?
try:
a=10/0;
except (ArithmeticError, IOError) as e:
print(e)
else:
print("Successfully Done")