Python 中的逻辑与运算符
Muhammad Waiz Khan
2021年7月13日
2021年4月29日
本教程将解释 Python 中逻辑与运算符的语法和用法。如果两个操作数的值均为 True
,则逻辑与运算符将返回 True
,如果两个操作数的任何值为 False
,则逻辑运算符将返回 False
。如果所有条件或操作数均为 True
,而我们只想执行一个动作或一个任务,则使用逻辑与
运算符。
在大多数编程语言中,即 C、C++、Java 和 C# 等。&&
用作逻辑与运算符。与其他编程语言不同,and
关键字在 Python 中用作逻辑与运算符。
Python 中的逻辑和运算符 and
的示例
现在,让我们研究一下 Python 中逻辑和运算符 and
的示例代码的用法。
假设我们有一个程序基于两个变量 a
和 b
执行动作;我们使用 and
关键字检查 a
和 b
的值,如下面的示例代码所示。
a = 12
b = 2
if a > 0 and b > 0:
print('a and b are greater than 0')
输出:
a and b are greater than 0
and
关键字的另一种用法是我们要检查函数的输出,然后根据值返回的布尔值执行操作或任务。
下面的示例代码演示了如何在 Python 中使用逻辑与运算符 and
来检查函数返回的布尔值。
func1 = True
func2 = False
if func1 and func2:
print('Both function executed successfully')
else:
print("Task failed")
输出:
Task failed
我们还可以检查两个以上操作数的值,即在 Python 中使用多个逻辑与运算符 and
来确定所有条件是否都为 True
,如以下示例代码所示:
cond1 = True
cond2 = True
cond3 = False
cond4 = True
if cond1 and cond2 and cond3 and cond4:
print("All conditions are true!")
else:
print("All conditions are not satisfied")
输出:
All conditions are not satisfied