pythonnotandor
Ⅰ python3的and not怎么用
elif a == b and not c:
这里的and not不是这么断的,and表示条件同时满足条件才执行,not是修饰c的,c是False,那not c就是True,反之亦然。
这句话的意识是,当a与b相等,同时not c为True才执行下面的代码。
not放在布尔型数据前面表示取反,真的变假的,假的变真的
Ⅱ “and”、“or”和“not”想在python中如何运用
‘and’、‘or’和‘not’的优先级是not>and>or
Ⅲ python中的not具体表示是什么,举个例子说一下,衷心的感谢
在python中not是逻辑判断词,用于布尔型True和False。
布尔"非" :如果 x 为 True,返回 False 。如果 x 为 False,它返回 True。 例如:
a = 0;
b = 1;
if not ( a and b ):
print "变量 a 和 b 都为 false,或其中一个变量为 false";
else:
print "变量 a 和 b 都为 true";
输出结果为:变量 a 和 b 都为 false,或其中一个变量为 false。
(3)pythonnotandor扩展阅读
1、not 和 in 连接的用法:
not in ,如果在指定的序列中没有找到值返回 True,否则返回 False。x 不在 y 序列中 , 如果 x 不在 y 序列中返回 True。例如:
b = 20;
list = [1, 2, 3, 4, 5 ];
if ( b not in list ):
print "变量 b 不在给定的列表中 list 中";
else:
print "变量 b 在给定的列表中 list 中";
2、is 和 not 连接的用法:
is not , 是判断两个标识符是不是引用自不同对象,x is not y, 类似id(a) != id(b)。如果引用的不是同一个对象则返回结果 True,否则返回 False。例如:
a = 20;
b = 30;
if ( a is not b ):
print "4 - a 和 b 没有相同的标识";
else:
print "4 - a 和 b 有相同的标识";
Ⅳ python中and、or和not 三个逻辑运算符,一直理解不了,求帮助!
‘and’、‘or’和‘not’的优先级是not>and>or
Ⅳ Python用于表示逻辑或者运算的关键字
Python的逻辑运算符有and(逻辑与,两者都为真才为真)、not(逻辑非,对当前逻辑取反)、or(逻辑或,两者中有一为真即为真)三个。
Ⅵ python 里面not not True or False and not True答案是true还是false呢
not会和紧邻的接合,and优先于or,
所以处理顺序应该是
not
not
True
=
True
Flase
and
not
True
=
False
and
False
=
False
最后是True
or
False
=
True
Ⅶ python的and or not 问题
满足条件的解只有两个:
a<0 and b>0 或者 a>0 and b<0
所以推算一下,只要满足a*b<0这唯一条件便足够了。
if(a*b)<0:
returnTrue
如果要练习and or方法的话可以参照一楼大神的
Ⅷ 是python的题目,帮我算一下,谢谢,不知道是怎么算的,and和or又是什么作用
不加括号的情况下 not的优先级大于and, and的优先级大于 or
所以上式等价于
(not 1) or (0 and 1) or (3 and 4) or (5 and 6) or (7 and 8 and 9)
= 0 or 0 or 4 or 6 or 9
= 4
and运算时,如果第一个为False返回第一个值,否则返回第二个值
or 运算时,如果第一个为False返回第二个值,否则返回第一个值
所以
0 and 1 = 0
3 and 4 = 4
5 and 6 = 6
7 and 8 and 9 = 9
0 or 4 or 6 or 9 = 4
Ⅸ Python3逻辑运算符not
在python中,逻辑运算符的优先级是逻辑运算符: or< and <not,所以在你的第一个问题print(1 and 2 or 3 and 4 and 6 and 7 or 8 not 9)中,优先计算not 9后发现8和false没有任何运算符连接,故会报错。此外,对于数字的运算,and取后而or取前,所以根据运算顺序可以得知print( not 1 and 2 or 3 and 4 and 6 and 7 or 8)即为print( False or 7 or 8),得到结果7.
对于数字反复运用逻辑运算符一般是没有意义的。望采纳
Ⅹ 初学python 不明白 and or not怎么用
and 就是所有都必须要
OR,就是其中一个要就可以了,
NOT 就是不能是