Upgrade to Pro — share decks privately, control downloads, hide ads and more …

python pratikleri

Emre Yılmaz
November 23, 2017

python pratikleri

Emre Yılmaz

November 23, 2017
Tweet

More Decks by Emre Yılmaz

Other Decks in Programming

Transcript

  1. The zen of Python Beautiful is better than ugly. Explicit

    is better than implicit. Simple is better than complex. Complex is better than complicated. Flat is better than nested. Sparse is better than dense. Readability counts. Special cases aren't special enough to break the rules. Although practicality beats purity. Errors should never pass silently. Unless explicitly silenced. In the face of ambiguity, refuse the temptation to guess. There should be one-- and preferably only one --obvious way to do it. Although that way may not be obvious at first unless you're Dutch. Now is better than never. Although never is often better than *right* now. If the implementation is hard to explain, it's a bad idea. If the implementation is easy to explain, it may be a good idea. Namespaces are one honking great idea -- let's do more of those!
  2. a = 21 
 b = 42 
 Soru: a

    ile b değişkenlerinin değerlerini değiş-tokuş etmek istiyoruz. Nasıl? (a=42, b=21 olmalı.) swapping
  3. a = 21 
 b = 42 
 Soru: a

    ile b değişkenlerinin değerlerini değiş-tokuş etmek istiyoruz. Nasıl? (a=42, b=21 olmalı.) swapping
  4. teams = [“galatasaray”, “besiktas”, “fenerbahce”] Listenin eleman sırasına göre ekrana

    şu şekilde bir çıktıyı nasıl alırız? 
 1. galatasaray 2. besiktas 3. fenerbahce indexes
  5. teams = [“galatasaray”, “besiktas”, “fenerbahce”] Listenin eleman sırasına göre ekrana

    şu şekilde bir çıktıyı nasıl alırız? 
 1. galatasaray 2. besiktas 3. fenerbahce indexes
  6. scores = [21, 42, 88, 90, 100, 55]
 
 Bunların

    ortalamasını nasıl alırız? stdlib
  7. scores = [21, 42, 88] students = [“John”, “Cemil”, “Altay”]


    Listelerin sırasına göre aşağıdaki gibi bir çıktıyı nasıl alırız? stdlib
  8. scores = [17, 20] yeni bir liste oluşturalım. adı new_scores

    olsun. her score 3 ile çarpılsın. her eleman için çıkan sonuç tek sayı ise, +1 eklensin.
 
 beklenen değerler: new_scores = [52, 60] playing with lists
  9. cluster_one = [1, 5, 10] cluster_two = [2, 10, 3]

    yeni bir liste oluşturalım. içinde ortak elemanlar olsun.
 
 beklenen değerler: cluster_three = [10] playing with lists