Python作業

40423248 蔡昆傑

影片大綱

print("i have {0:d}cats".format(6))輸出i have 6 cats

print("i have {0:3d}cats".format(6))輸出 i have 6 cats

print("i have {0:03d }cats".format(6))輸出i have 006 cats

print("i have {0:f}cats".format(6))輸出i have 6.000000 cats

print("i have {0:.2f}cats".format(6))輸出i have 6.00 cats

影片心得

slary = input("please enter your salary") bouns = input("please enter your bouns") paycheckAmount = salary + bouns print(paycheckAmount) 把你的薪水及獎金輸入後再將兩個分別加起來,並印出來.

上課心得

這禮拜老師在github上建立一個班上的群組,每個人都可以把自己的作業推送到上面,不過中間有一些錯誤,不會解決,但老師很快的處理錯誤,並將錯誤原因告訴我們,只要用Scite打開leo,修改楚河漢界裡未連結的資料,把它們接起來就可以處理錯誤,接下來就可以上傳到遠端.

影片參考

請參考 vimeo

自評

大概六十五分