40423110余浩鋼
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!")
如何將刪掉的檔案回復(git rm *.html),如果git push兩次可以到commit裡下載之前的檔案.
分數:60分