Skip to content

Commit

Permalink
Merge pull request #1 from yavuztarhan/patch-1
Browse files Browse the repository at this point in the history
Update conditions.rst
  • Loading branch information
ozgurturkiye committed Dec 13, 2021
2 parents 98a31b4 + abd2034 commit 703658e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/conditions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ Else
print("b büyüktür a")
elif a == b:
print("a eşittir b")
else a > b:
elif a > b:
print("a büyüktür b")

Bu örnekte ``a``, ``b``’den daha büyüktür, bu yüzden ilk koşul doğru değildir, aynı zamanda `elif` koşulu da doğru değildir, bu yüzden ``else`` koşuluna gidip "a büyüktür b " yazısını ekrana basıyoruz.

0 comments on commit 703658e

Please sign in to comment.