try:
    num1 , num2 = eval(input("Enter Two Numbers, Separated by a comma : "))
    result = num1/num2
    print("The Result is:",result)
except ZeroDivisionError:
    print("Division by zero is error !!")
except SyntaxError:
    print("The Comma is Missing. Enter numbers separated by a comma like this- 1,2 !")
except:
    print("Incorrect Input!")
else:
    print("NO Exceptions!")
finally:
    print(" And This Will Execute No Matter What!")

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: