自学Python教程【第五十二节】真值表
欢迎大家来到马哥Python教程教室,上一讲我们了解了Python编程中的一些数学运算,这节课我们来学习Python中的真值表。
逻辑判断是编程中极为常用的知识。之前的课我们已经说过,见第4课和第9课。但鉴于逻辑运算的重要性,今天我再把常用的运算结果总结一下,供大家参考。
这种被称为“真值表”的东西,罗列了基本逻辑运算的结果。你不一定要全背下来,但应该对运算的规律有所了解。
为了便于看清,我用<=>来表示等价关系。
<=>左边表示逻辑表达式,<=>右边表示它的结果。
NOT
not False <=> True
not True <=> False
(not的结果与原值相反)
OR
True or False <=> True
True or True <=> True
False or True <=> True
False or False <=> False
(只要有一个值为True,or的结果就是True)
AND
True and False <=> False
True and True <=> True
False and True <=> False
False and False <=> False
(只要有一个值为False,or的结果就是False)
NOT OR
not (True or False) <=> False
not (True or True) <=> False
not (False or True) <=> False
not (False or False) <=> True
NOT AND
not (True and False) <=> True
not (True and True) <=> False
not (False and True) <=> True
not (False and False) <=> True
!=
1 != 0 <=> True
1 != 1 <=> False
0 != 1 <=> True
0 != 0 <=> False
==
1 == 0 <=> False
1 == 1 <=> True
0 == 1 <=> False
0 == 0 <=> True
以上就是基本的逻辑运算,你会在编程中反复用到它们。就算刚开始搞不清也没关系,多写几段代码就会熟悉了。
恭喜你在Python自学的道路上又坚持了一天,以上就是今天为大家分享的真值表中的相关内容,你学会了吗?看不懂就去码代码,看不懂就去码代码,看不懂就去码代码,重要的事情说三遍,你记住了吗?下节课我们将分享给大家正则表达式的相关内容,敬请期待!
好啦,今天的分享到这里就结束了,希望大家能够持续关注马哥教育官网,每天都会有大量优质内容与大家分享
声明:文章来源于网络,侵删!