首頁  >  文章  >  後端開發  >  如何取得Python函數的參數名稱?

如何取得Python函數的參數名稱?

Patricia Arquette
Patricia Arquette原創
2024-11-01 08:30:02795瀏覽

How to Get the Parameter Names of a Python Function?

存取Python 函數中的參數名稱

存取Python 函數中的參數名稱清單通常很有用,特別是對於除錯目的或動態產生程式碼時。

檢索此資訊的有效方法之一是透過 func.__code__.co_argcount 和 func.__code__.co_varnames 屬性。以下是一個範例:

<code class="python">def func(a, b, c):
    # Access the number of parameters and their names

    num_args = func.__code__.co_argcount
    arg_names = func.__code__.co_varnames[:num_args]

    print(num_args, arg_names)

func()</code>

此程式碼將輸出:

3 ('a', 'b', 'c')

co_argcount 提供函數參數的總數,而co_varnames[:num_args] 傳回包含以下名稱的元組函數中的非預設參數。

或者,您可以使用檢查模組來取得參數資訊:

<code class="python">import inspect

def func(a, b, c):
    params = inspect.getargspec(func)

    print(params.args)

func()</code>

這也會輸出:

['a', 'b', 'c']

請注意,預設參數不會出現在params .args 列表中。但是,您可以使用 params.defaults 單獨存取它們。

以上是如何取得Python函數的參數名稱?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn