python逻辑运算符and的使用

2024年08月03日 运算符 Python51

python逻辑运算符and说明

1、and逻辑与,一假则假,都真才真,可以对符号两侧的值进行与运算。

2、只有在符号两侧的值都为True时,才会返回True,只要有一个False就返回False。

Python中的与运算是短路的与,也就是说与运算是找False的,如果第一个值为False,则不再看第二个表达式的结果。

python逻辑运算符and实例

print(True and True) # True
print(True and False) # False
print(False and True) # False
print(False and False) # False
 
# 验证and为短路与,找False结束
# 第一个值是True,会执行print()
True and print('1你猜我出来吗?')
# 第一个值是False,不会执行print()
False and print('2你猜我出来吗?')

本文链接:http://so.lmcjl.com/news/9857/

展开阅读全文