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