Question:

Which operator is used for logical AND in Python?

Show Hint

Python uses words (and, or, not) instead of symbols such as && used in some other languages.
Updated On: Jun 8, 2026
  • &
  • and
  • &&
  • AND
Show Solution
collegedunia
Verified By Collegedunia

The Correct Option is B

Solution and Explanation

Concept: Logical operators are used to combine conditional expressions.

Step 1:
Recall Python logical operators Python provides: \[ \texttt{and,\ or,\ not} \]

Step 2:
Identify the AND operator The logical AND operator returns True only when both conditions are True. Example: x = 10 y = 20 x > 5 and y > 15 The expression evaluates to True. Final Answer: \[ \boxed{\texttt{and}} \]
Was this answer helpful?
0
0