Logical operators in Python are used to combine or modify boolean values (True or False). There are three main logical operators: and, or, and not. and: Returns True if both operands are True, otherwise it returns False.