DEV Community

Cover image for Logical Operators in python
Aswin Barath
Aswin Barath

Posted on • Updated on

Logical Operators in python

Logical operators are used to combining more than two conditional statements.

These operators are very useful for writing logical conditions in control flow statements of a programming language.

Let's code them one by one.

and operator

  • and operator return the boolean value True only if both statements are true. Alt Text Output:
True
Enter fullscreen mode Exit fullscreen mode

or operator

  • or operator returns the boolean value True if any statement is true. Alt Text Output:
True
Enter fullscreen mode Exit fullscreen mode

not operator

  • not-operator acts as a unary operator which returns the boolean value True the statement is true and vice versa. Alt Text Output:
False
Enter fullscreen mode Exit fullscreen mode

Best Resources

Who Am I?

I’m Aswin Barath, a Software Engineering Nerd who loves building Web Applications, now sharing my knowledge through Blogging during the busy time of my freelancing work life. Here’s the link to all of my socials categorized by platforms under one place: https://linktr.ee/AswinBarath

Thank you so much for reading my blog🙂.

Top comments (0)