Logical operator - mantiq operatori.
Logical operators:
- && - AND
- || - OR
- ! - NOT
&&(AND)
True and True = True
True and False = False
False and True = False
False and False = False
||(OR)
True or True = True
True or False = True
False or True = True
False or False = False
Top comments (0)