Focus mode

Veri Bilimi

Mantıksal Operatörler

Mantıksal Operatörler (Logical Operators)


not

not True


not False


not 5 < 6


not 5 == 5


a = 4
b = 10
not a < b


not (a > b)


and

  • Sadece iki ifade de True ise True sonucu verir, yoksa False olur
True and True


True and False


False and False


a = 4
b = 1
c = 10
(a > b) and (b < c)


(a > b) and (b > c)


or

  • Sadece iki ifade de False ise False sonucu verir, yoksa True olur
True 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)


left-disk

Programs to Accelerate Your Progress in a Software Career

Join our 4-8 month intensive Patika+ bootcamps, start with the fundamentals and gain comprehensive knowledge to kickstart your software career!

right-cube

Test

Comments

You need to enroll in the course to be able to comment!