Advertisement
TristanSld

functions 1

Feb 14th, 2014
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.55 KB | None | 0 0
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3.  
  4. def tek():
  5.     print "Girdiğiniz sayı bir tek sayıdır!"
  6. def cift():
  7.     print "Girdiğiniz sayı bir çift sayıdır!"
  8. def cik():
  9.     quit()
  10.  
  11. def tekmiciftmi(sayi):
  12.     if int(sayi) % 2 == 0:
  13.         cift()
  14.     else:
  15.         tek()
  16.  
  17. tekmiciftmi(1)#burada karakteristik özelliği kendimiz verdik
  18. print "\n"
  19. tekmiciftmi(2)
  20. print "\n\n"
  21. a = raw_input("Lütfen bir sayı giriniz: ")
  22. tekmiciftmi(a)#burada a bağımsız değişkenine karakteristik özelliği kullanıcının vermesini istedik
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement