笨方法學python加分習題19
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()
截圖:加分習題
相關文章
- 笨方法學python加分習題18Python
- 笨方法學Python3 習題3Python
- 笨辦法學Python習題48Python
- 笨辦法學python習題43Python
- 《笨方法學python3》習題46.2 建立骨架專案目錄Python
- python, del[] 用法, 笨方法學pythonPython
- 笨辦法學Python – 習題8-10: Printing & Printing, PrintingPython
- 笨辦法學 Python · 續 練習 39:SQL 建立PythonSQL
- 笨辦法學C 練習2:用Make來代替PythonPython
- ex0-python環境搭建 -powershell建立目錄 [笨方法學python]Python
- assert語句,python, 笨辦法學pythonPython
- 笨方法學C 筆記 (day1)筆記
- Python如何快速學習?Python學習方法技巧!Python
- 《笨辦法學Python》 第33課手記Python
- 笨辦法學C 練習28:Makefile 進階
- 笨辦法學C 練習13:Switch語句
- 笨辦法學前端前端
- 笨辦法學C 練習25:變參函式函式
- 笨辦法學C 練習34:動態陣列陣列
- 笨辦法學C 練習42:棧和佇列佇列
- 笨辦法學C 練習29:庫和連結
- 笨辦法學C 練習18:函式指標函式指標
- 笨辦法學C 練習36:更安全的字串字串
- 笨辦法學C 練習8:大小和陣列陣列
- 0基礎怎麼學習Python?Python學習方法彙總!Python
- python學習方法總結(內附python全套學習資料)Python
- 0基礎學習Python該如何入門?Python學習方法!Python
- oracle增加分割槽的方法Oracle
- 在南京學習Python有哪些好的學習方法?Python
- 在北京學習Python有哪些好的學習方法?Python
- 笨辦法學C 練習38:雜湊演算法演算法
- 笨辦法學C 練習1:啟用編譯器編譯
- Python學習筆記|Python之特殊方法Python筆記
- 《統計學習方法》第11章習題
- 零基礎學習Python的學習路線及教程!附19最新python學習資料分享Python
- 每週一書:162頁《笨辦法學 Python》分享!Python
- Python程式設計方法論學習Python程式設計
- 加分