# 下列表达式逻辑运算后的结果为?(尽量直接思考解答,可以用代码测试结果)
#
# True and True #true
# False and True #false
# 1 == 1 and 2 == 1 #false
# "test" == "test" #true
# 1 == 1 or 2 != 1 #true
# True and 1 == 1 #true
# False and 0 != 0 #false
# True or 1 == 1 #true
# "test" == "testing" #false
# 1 != 0 and 2 == 1 #false
# "test" != "testing" #true
# "test" == 1 #false
# not (True and False) #true
# not (1 == 1 and 0 != 1) #false
# not (10 == 1 or 1000 == 1000) #false
# not (1 != 10 or 3 == 4) #false
# not ("testing" == "testing" and "Zed" == "Cool Guy") #true
# 1 == 1 and not ("testing" == 1 or 1 == 0) #true
# 3 == 3 and not ("testing" == "testing" or "Python" == "Fun") #false
【Python爬虫】逻辑运算练习题
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- # 6.第六次 逻辑运算练习题 # 下列表达式逻辑运算后的结果为?(尽量直接思考解答,可以用代码测试结果) # T...
- and: 一个为假都为假 or:同假为假 同真为真 一个为真一个为假 输出真 非0即为真 非真即为假 下列表达式...
- 进入麻瓜编程用python学爬虫第一周第二课的练习题了,自己鼓捣了半天,无解,最后可耻的看了答案:恍然大悟后发现自...
- #第一题 a =10 b =3 c = a/b - a print(c,type(c)) c = a/b * a ...
- # 一、定义字符串变量 # 1.请定义三个字符串a,b,c值分别为 I,like, python a="i " b...