1. 程式人生 > >learn the python the hard way習題26~30總結

learn the python the hard way習題26~30總結

表達 相同 any read 格式 表達式 print true 錯誤

考試試題26錯誤總結:

  1. 漏寫字母,括號
  2. 寫錯字母
  3. write(),read()的使用:只能打開使用了 open() 後返回的文件對象(file object),而不能直接使用文件名
  4. if 語句中,條件後有冒號

邏輯關系表達式註意的點

  1. != 和 <> 的意義是相同的,!=是主流用法。
  2. Python 中有短路邏輯
  3. 如果被操作被操作對象中含有 True 或者 False 之外的字符串,那麽,布爾表達式返回兩個被操作對象的一個,例如:"test" and "test" 返回 "test";1 and 1返回1

if語句,else語句,elif語句

格式:if people>dogs:
print("There are too many dogs")
註意:

  • 在條件後有冒號
  • 在代碼塊前有4個空格的縮進
  • else,elif, 語句用於二分支和多分支的情況





learn the python the hard way習題26~30總結