美文网首页Python四期爬虫作业
【Python爬虫】-8/17课后作业

【Python爬虫】-8/17课后作业

作者: 邓有心心心 | 来源:发表于2017-08-17 21:23 被阅读0次

逻辑判断练习

1.True and True

True

2.False and True

False

3.1 == 1 and 2 == 1

False

4."test" == "test"

True

5.1 == 1 or 2 != 1

True

6.True and 1 == 1

False

7.False and 0!=0

False

8.True or 1==1

True

9."test"=="testing"

False

10.1!=0 and 2==1

False

11."test"!="testing"

True

12."test"==1

False

13.not(True and False)

True

14.not(1==1 and 0!=1)

False

15.not(10==1 and 1000=1000)

False

16.not(1!=10 and 3==4)

True

17.not("testing"=="testing" and "Zed"=="Cool Guy")

True

18.1==1 and not("testing"==1 or 1==0)

True

19.3==3 and not("testing"=="testing" or "Python"=="Fun")

False

相关文章

网友评论

    本文标题:【Python爬虫】-8/17课后作业

    本文链接:https://www.haomeiwen.com/subject/nggnrxtx.html