python逻辑运算符and的使用

美女程序员鼓励师

说明

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

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

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

实例

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你猜我出来吗?')

以上就是python逻辑运算符" title="python逻辑运算符">python逻辑运算符and的使用,希望对大家有所帮助。更多Python学习指路:python基础教程

本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。

以上是 python逻辑运算符and的使用 的全部内容, 来源链接: utcz.com/z/545256.html

回到顶部