單行內聯和多行註釋

當基本程式碼本身不清楚時,註釋用於解釋程式碼。

Python 忽略了註釋,因此不會在那裡執行程式碼,或者引發普通英語句子的語法錯誤。

單行註釋以井號字元(#)開頭,並以行尾結束。

  • 單行評論:
# This is a single line comment in Python
  • 內聯評論:
print("Hello World")  # This line prints "Hello World"
  • 跨越多行的註釋在兩端都有 """'''。這與多行字串相同,但它們可用作註釋:
"""
This type of comment spans multiple lines.
These are mostly used for documentation of functions, classes and modules.
"""