Skip to content

Instantly share code, notes, and snippets.

@ysnerdem
Created January 17, 2018 23:15
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/c68ed162a6c490c53027ef17a95288a4 to your computer and use it in GitHub Desktop.
Save ysnerdem/c68ed162a6c490c53027ef17a95288a4 to your computer and use it in GitHub Desktop.
def sqr(num):
if (type(num) != int):
raise ValueError("Geçerli bir sayı girmediniz.")
else:
return num**2
try:
print(sqr(2))
print(sqr("a"))
except ValueError:
print("Fonksiyona geçersiz değer girildi.")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment