suite(程式碼區塊)

一個通用概念

用於表示一組語句或代碼塊,通常描述在某個控制結構或代碼塊中執行的一組語句。

比如下面各代碼塊:

條件語句(if)
if condition:
    # suite===
    statement1
    statement2
    # ===
循環語句(for、while)
for item in iterable:
    # suite===
    statement1
    statement2
    # ===
函數定義區塊
def func_name:
    # suite===
    statement1
    statement2
    # ===
類定義區塊
class class_name:
    # suite===
    
    def __init__(self):
        # 構造函数的suite
        statement1
        statement2
        # ...

    def my_method(self):
        # 方法的suite
        statement1
        statement2
        # ...

    # ===

Last updated