Focus mode
not
not True
not False
not 5 < 6
not 5 == 5
a = 4 b = 10
not a < b
not (a > b)
and
True
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)
or
False
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)
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!
You need to enroll in the course to be able to comment!