W3作業

40423121 林秉憲

影片大綱

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裡下載之前的檔案.

自評

分數:60分