diff options
| author | Divay Prakash <divayprakash@users.noreply.github.com> | 2019-12-23 23:14:50 +0530 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-12-23 23:14:50 +0530 | 
| commit | 16dc074e39f5f996639f23f4d6812c211ae5d22d (patch) | |
| tree | 63be0d1a3885201f3d13f1dc00266fb719f304a7 /tr-tr/python3-tr.html.markdown | |
| parent | ffd1fed725668b48ec8c11cbe419bd1e8d136ae3 (diff) | |
| parent | 1d5f3671ea4bc6d7a70c3026c1ae6857741c50a6 (diff) | |
Merge branch 'master' into master
Diffstat (limited to 'tr-tr/python3-tr.html.markdown')
| -rw-r--r-- | tr-tr/python3-tr.html.markdown | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/tr-tr/python3-tr.html.markdown b/tr-tr/python3-tr.html.markdown index e53d5568..b78d517f 100644 --- a/tr-tr/python3-tr.html.markdown +++ b/tr-tr/python3-tr.html.markdown @@ -4,7 +4,7 @@ contributors:      - ["Louie Dinh", "http://pythonpracticeprojects.com"]      - ["Steven Basart", "http://github.com/xksteven"]      - ["Andre Polykanine", "https://github.com/Oire"] -    - ["Andre Polykanine", "https://github.com/Oire"] +    - ["Batuhan Osman T.", "https://github.com/BTaskaya"]  translators:      - ["Eray AYDIN", "http://erayaydin.me/"]  lang: tr-tr @@ -484,7 +484,7 @@ filter(lambda x: x > 5, [3, 4, 5, 6, 7])   # => [6, 7]  # Sınıf oluşturmak için objeden alt sınıf oluşturacağız. -class Insan(obje): +class Insan(object):      # Sınıf değeri. Sınıfın tüm nesneleri tarafından kullanılabilir      tur = "H. sapiens" @@ -499,7 +499,7 @@ class Insan(obje):      # Bir metot. Bütün metotlar ilk parametre olarak "self "alır.      def soyle(self, mesaj): -        return "{isim}: {mesaj}".format(isim=self.name, mesaj=mesaj) +        return "{isim}: {mesaj}".format(isim=self.isim, mesaj=mesaj)      # Bir sınıf metotu bütün nesnelere paylaştırılır      # İlk parametre olarak sınıf alırlar | 
