Python If-Else Koşul Yapısı

 

Merhaba arkadaşlar bu makalemizde Python’da if-else koşulunun nasıl kullanıldığını göreceğiz. If koşulunda  sonuç boolean değeri true olarak dönerse koşul içerisindeki kod bloğu çalıştırılır. Eğer koşul false olarak dönerse else altındaki kod yapısı çalıştırılır. If-Else koşulunu aşağıdaki basit bir örnekle inceleyelim.

 

 







Şekil 1


 

Pyton_if.py

 

select = int(input("Lutfen 1-3 arasindaki islemi secip entere tiklayiniz..Enter Your Choice(1-3)"))

 

if select==1:

 

    print("The first action is selected")

 

elif select==2:

 

    print("The second action is selected")

 

elif select==3:

 

    print("The third action is selected")

 

else:

 

    print("Invalid operation!")

 

 

Bir makalenin daha sonuna geldik. Bir sonraki makalede görüşmek üzere. Bahadır ŞAHİN


About Bahadır Şahin

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.

0 comments:

Öne Çıkan Yayın

GridView da Seçili Satırı DetailsView da Göstermek

Merhaba arkadaşlar bu makalemizde GridView nesnesi ile birlikte DetailsView nesanesini birlikte kullanacağız. GridView da seçili satırın de...