Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created November 11, 2020 11:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amankharwal/ba46b0e2010f6f8c59f03aacfbf74014 to your computer and use it in GitHub Desktop.
Save amankharwal/ba46b0e2010f6f8c59f03aacfbf74014 to your computer and use it in GitHub Desktop.
a = input("type a number:")
b = input("type another:")
a = int(a)
b = int(b)
try:
print(a / b)
except ZeroDivisionError:
print("b cannot be zero.")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment