Home >Backend Development >Python Tutorial >What Do Python's 'and' and 'or' Operators Return?

What Do Python's 'and' and 'or' Operators Return?

Linda Hamilton
Linda HamiltonOriginal
2024-11-14 15:47:02505browse

What Do Python's 'and' and 'or' Operators Return?

Operators in Python: Return Values of 'and' and 'or'

In Python, the operators 'and' and 'or' return one of their operands instead of solely returning boolean values. This behavior differs from the 'not' operator, which consistently returns a boolean value.

The 'and' operator evaluates to the first false value encountered in a sequence of operands. If no false value is found, it returns the last operand. Conversely, the 'or' operator evaluates to the first true value encountered in a sequence of operands. If no true value is found, it returns the last operand.

Examples:

>>> 0 or 42
42

In this example, '0' is false, while '42' is true. The 'or' operator returns the first true value encountered, which is '42'.

>>> 0 and 42
0

In this example, '0' is false, and '42' is true. The 'and' operator returns the first false value encountered, which is '0'.

Contrast with 'not':

The 'not' operator always returns a boolean value, either True or False. It flips the boolean value of its operand.

>>> not 0
True
>>> not 42
False

This behavior ensures that the 'not' operator can be used for straightforward boolean negation.

The above is the detailed content of What Do Python's 'and' and 'or' Operators Return?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn