Odak modu
notnot True
not False
not 5 < 6
not 5 == 5
a = 4 b = 10not a < b
not (a > b)
andTrue ise True sonucu verir, yoksa False olurTrue and True
True and False
False and False
a = 4 b = 1 c = 10(a > b) and (b < c)
(a > b) and (b > c)
orFalse ise False sonucu verir, yoksa True olurTrue or True
True or False
False or False
a = 4 b = 1 c = 10(a > b) or (b < c)
(a > b) or (b > c)
(a < b) or (b > c)
Yorum yapabilmek için derse kayıt olmalısın!