【Python爬蟲】-笨辦法學(xué) Python 習(xí)題 27-34

習(xí)題 27:? 記住邏輯關(guān)系

and 與

or 或

not 非

?!= (not equal) 不等于

== (equal) 等于

>= (greater-than-equal) 大于等于

<= (less-than-equal) 小于等于

True 真

?False 假


習(xí)題 28:布爾表達(dá)式練習(xí)

print(True and True)

print(False and True)

print(1==1and2==1)

print("test"=="test")

print(1==1or2!=1)

print(True and1==1)

print(False and0!=0)

print(True or1==1)

print("test"=="testing")

print(1!=0and2==1)

print("test"!="testing")

print("test"==1)

print(not(True and False))

print(not(1==1and0!=1))

print(not(10==1or1000==1000))#False

print(not(1!=10or3==4))#False

print(not("testing"=="testing"and"Zed"=="Cool Guy"))

print(1==1and not("testing"==1or1==0))

print("chunky"=="bacon"and not(3==4or3==3))

print(3==3and not("testing"=="testing"or"Python"=="Fun"))#False


習(xí)題 29:? 如果(if)

people =20

cats =30

dogs=15

ifpeople < cats:

print("Too many cats! The world is doomed!")

ifpeople > cats:

print("Not many cats! The world is saved!")

ifpeople

print("The world is drooled on!")

ifpeople >dogs:

print("The world is dry!")

dogs+=5

ifpeople >=dogs:

print("People are greater than or equal to dogs.")

ifpeople <=dogs:

print("People are less than or equal to dogs.")

ifpeople ==dogs:

print("People are dogs.")


習(xí)題 30: Else? 和 If

people =30

cars =40

buses =15

ifcars > people:

print("We should take the cars.")

elifcars < people:

print("We should not take the cars.")

else:

print("We can't decide.")

ifbuses > cars:

print("That's too many buses.")

elifbuses < cars:

print("Maybe we could take the buses.")

else:

print("We still can't decide.")

ifpeople > buses:

print("Alright, let's just take the buses.")

else:

print("Fine, let's stay home then.")


習(xí)題 31:? 作出決定

print("You enter a dark room with two doors. Do you go through door #1 or door #2?")

door =input("> ")

ifdoor =="1":

print("There's a giant bear here eating a cheese cake. What do you do?")

print("1.Take the cake.")

print("2.Scream at the bear.")

bear =input("> ")

ifbear =="1":

print("The bear eats your face off. Good job!")

elifbear =="2":

print("The bear eats your legs off. Good job.")

else:

print("Well, doing %s is probably better. Bear runs away."% bear)

elifdoor =="2":

print("You stare into the endless abyss at Cthulhu'sretina.")

print("1. Blueberries.")

print("2. Yellow jacket clothespins.")

print("3. Understanding revolvers yelling melodies.")

insanity =input("> ")

ifinsanity =="1"orinsanity =="2":

print("Your body survives powered by a mind of jello. Good job!")

else:

print("The insanity rots your eyes into a pool of muck. Good job!")

else:

print("You stumble around and fall on a knife and die. Good job!")


習(xí)題 32:? 循環(huán)和列表

the_count = [1,2,3,4,5]

fruits = ["apples","oranges","pears","apricots"]

change = [1,"pennies",2,"dimes",3,"quarters"]

# this first kind of for-loop goes through a list

fornumberinthe_count:

print("This is count %d"% number)

# same as above

forfruitinfruits:

print("A fruit of type: %s"% fruit)

# also we can go through mixed lists too

# notice we have to use %r since we don't know what's in it

foriinchange:

print("I got %r"% i)

# we can also build lists, first start with an empty one

elements = []

# then use the range function to do 0 to 5 counts

foriinrange(0,6):

print("Adding %d to the list."% i)

# append is a function that lists understand

elements.append(i)

# now we can print them out too

foriinelements:

print("Element was: %d"% i)


習(xí)題 33: While循環(huán)

i =0

numbers = []

whilei <6:

print("At the top i is %d"% i)

numbers.append(i)

i = i +1

print("Numbers now: ",numbers)

print("At the bottom i is %d"% i)

print("The numbers:")

fornuminnumbers:

print(num)


習(xí)題 34:? 訪問列表的元素

animals = ['bear','python','peacock','kangaroo','whale','platypus']

print(animals[0])

print(animals[1])

print(animals[2])

print(animals[3])

print(animals[4])

print(animals[5])

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請結(jié)合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容