Day 32 - Custom Errors
Raising Custom errors
In Python, we can raise custom errors by using the raise keyword.
salary = int(input("Enter salary amount: "))
if not 2000 < salary < 5000:
raise ValueError("Not a valid salary")
In the previous tutorial, we learned about d...
viveky.hashnode.dev1 min read