笨方法學python加分習題19

梨渦發表於2018-02-04

python版本:3   若有錯誤,敬請指出

#加分習題19
#1
def cheese_and_crackers(cheese_count,boxes_of_crackers):#def 函式名稱(形參):
    print("You have %d cheeses!" % cheese_count)#程式碼塊
    print("You have %d boxes of crackers!" % boxes_of_crackers)
    print("Man that's enough for a party!")
    print("Get a blanket.\n")

print("We can just give the function numbers directly:")
cheese_and_crackers(20,30)#呼叫函式



print("OR,we can use variables from our script:")
amount_of_cheese = 10
amount_of_crackers = 50
cheese_and_crackers(amount_of_cheese,amount_of_crackers)#呼叫函式




print("We can even do math inside too:")
cheese_and_crackers(10+20,5+6)#呼叫函式



print("And we can combine the two,variables and math:")
cheese_and_crackers(amount_of_cheese + 100,amount_of_crackers +1000)#呼叫函式
#2我懶,不想念,我猜也沒人會想聽>_<
#3#玩一下,不需要實參
def draw():
    print(" l         ii         l        y       y")
    print(" l                    l          y   y  ")
    print(" l         ii         l            y    ")
    print(" l         ii         l            y    ")
    print(" l         ii         l            y    ")
    print(" llllll    ii         llllll       y    ")

draw()




截圖:加分習題


相關文章