40423124林濬翔
print('Hickory Dickory Dock! The mouse ran up the clock')跟print("Hickory Dickory Dock! The mouse ran up the clock")執行出來是一樣的.
print('Hickory Dickory Dock! \nThe mouse ran up the clock')\n表示插入新的一行
print("""This is the strangest way to print over multiple lines i know""")可以取代\n,增加程式的美觀性,可以用+號將兩段字元加在一起.
使用\\就可以顯示\
在影片的最後有列舉幾個錯誤
print(Hickory Dickory Dock) 正確print('Hickory Dickory Dock')
print('It's a small world') 正確print("It's a small world")
print("Hi there') 正確print("Hi there")
prnit("Hello World!")正確print("Hello world!")
這禮拜先交如何安裝leo,先點擊fix在案start就會開始下載,之後老師教如何將檔案git到分支上,並教我們如何將刪掉的檔案回復(git rm *.html),如果git push兩次可以到commit裡下載之前的檔案.
分數:70分