Skip to content

Instantly share code, notes, and snippets.

@ysnerdem
Last active January 17, 2018 23: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 ysnerdem/c5f5fc456fbb835b075ee9dd2feea182 to your computer and use it in GitHub Desktop.
Save ysnerdem/c5f5fc456fbb835b075ee9dd2feea182 to your computer and use it in GitHub Desktop.
try:
num1 = int(input("1.Sayı:"))
num2 = int(input("2.Sayı:"))
print(num1 / num2)
except ZeroDivisionError:
print("Bir sayı sıfıra bölünemez.")
except ValueError:
print("Geçerli sayılar girmediniz")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment