ZetCode

Python and Keyword

last modified February 25, 2025

The and keyword in Python is a logical operator used to combine conditional statements. It returns True only if all conditions are true. This tutorial covers the usage of the and keyword, its logical operations, and practical examples.

The and keyword is used to check multiple conditions. It is commonly used in if statements to ensure all specified conditions must be met for the code to execute. The operator short-circuits, meaning it stops evaluation as soon as a false condition is encountered.

Basic Usage of and

This example demonstrates the basic usage of the and keyword in an if statement.

basic_and.py
x = 5
y = 10

if x > 2 and y < 15:
    print("Both conditions are true.")

The code checks if x is greater than 2 and y is less than 15. Since both conditions are true, it prints the message.

Using and in Conditional Tests

This example shows how to use and to test multiple conditions.

conditional_test.py
age = 25
is_member = True

if age >= 18 and is_member:
    print("Eligible for discount.")
else:
    print("Not eligible.")

The code checks if the user is both 18 or older and a member. If both conditions are met, the user is eligible for the discount.

Short-Circuit Evaluation

This example demonstrates the short-circuit behavior of the and operator.

short_circuit.py
def check_all(condition1, condition2):
    print("Evaluating condition1.")
    if not condition1:
        return False
    print("Evaluating condition2.")
    return condition2

result = check_all(False, True)
print(f"Result: {result}")

The function check_all uses the and operator to short-circuit evaluation. If condition1 is false, condition2 is not evaluated.

Using and in Loops

This example shows how to use and in a loop condition.

loop_condition.py
i = 0
j = 0

while i < 5 and j < 5:
    print(f"i: {i}, j: {j}")
    i += 1
    j += 1

The loop runs as long as both i and j are less than 5. Once either variable reaches 5, the loop exits.

Combining Multiple Conditions

This example demonstrates combining multiple conditions using and.

multiple_conditions.py
def check_status(status, active, verified):
    if status == "active" and active and verified:
        return "User is active, verified, and in good standing."
    else:
        return "User does not meet all criteria."

print(check_status("active", True, True))
print(check_status("inactive", True, True))

The function check_status uses multiple and conditions to determine the user's status. All conditions must be true for the active message to display.

Best Practices for Using and

Source

Python Boolean Operations Documentation

In this tutorial, we explored the and keyword in Python, learning how to use it to combine conditions, understanding short-circuit evaluation, and reviewing best practices.

Author

My name is Jan Bodnar, and I am a passionate programmer with extensive programming experience. I have been writing programming articles since 2007. To date, I have authored over 1,400 articles and 8 e-books. I possess more than ten years of experience in teaching programming.

List all Python tutorials.