python逻辑运算符有哪些 python逻辑运算符有哪些表达式返回的真假值如何判断

主机教程 建站分享 2年前 (2022-11-26) 165次浏览

文章摘要:python逻辑运算符有哪些 python逻辑运算符有哪些表达式返回的真假值如何判断

python中的逻辑运算符:1.and运算符,将x和y做并列运算;2.or运算符,只要x和y两个条件有一个为T […]

python中的逻辑运算符:1.and运算符,将x和y做并列运算;2.or运算符,只要x和y两个条件有一个为True,那么整体结果就为True;3.not运算符,对x进行布尔取反,非真即假,非假即真;

python中的逻辑运算符有以下几种

1.and运算符

and运算符作用:

and运算符的作用是将x和y做并列运算,如果x和y的结果都为True,则返回值为True;如果x和y有任意一个结果为False,则返回值为False。

and运算符语法:

x and y

and运算符使用方法:

True and True : True

True and False : False

False and True : False

False and False : False

2.or运算符

or运算符作用:

or运算符的作用是只要x和y两个条件有一个为True,那么整体结果就为True。

or运算符语法:

x or y

or运算符使用方法:

True or True : True

True or False : True

False or True : True

False or False : False

3.not运算符

not运算符作用:

not运算符的作用是对x进行布尔取反,非真即假,非假即真。

not运算符语法:

not x

not运算符使用方法:

not True : False

not False : True

month = 10

if not 1<=month<=12:

print('month不在1-12之间')


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:python逻辑运算符有哪些 python逻辑运算符有哪些表达式返回的真假值如何判断
文章链接:http://www.7966.org/post/13098.html
转载请注明出处

喜欢 (0)