大家好,今天我開始學習Python。
縮排
if 10>1 print("Ten is greater than one")
應該使用相同的編號。同一程式碼區塊中的空格否則會產生錯誤。
if 10>1 print("Ten is greater than one") print("Ten is lower than one")
空間使用不同的編號。兩個差異代碼區塊中的計數。
if 5 > 2 print("Five is greater than two!") if 5 > 2 print("Five is greater than two!")
評論
單行註解
#print("Hello Python") print("Hello Python")
多行註解
由於Python沒有多行註解。我們將在每一行中使用 # 來讀取 python 中我們想要忽略的每一行。
#This is a comment #written in #just more than one line print("Hello, World!")
只要字串沒有指派給變量,Python就會讀取該行,然後忽略它。我們使用三引號來使用多行註解。
""" This is a comment written in just more than one line """ print("Hello, World!")
以上是Python:縮排、註釋的詳細內容。更多資訊請關注PHP中文網其他相關文章!