爲字典參數添加文檔字符串的建議方式是什麼?我可以看到多行DOC文本字符串示例here。如何爲字典添加python文檔字符串
我需要將輸入參數記錄到文檔字符串中的函數。如果它是一個簡單的變量,我可以使用類似:
def func2(a=x, b = y):
""" fun2 takes two integers
Keyword arguments:
a -- refers to age (default 18)
b -- refers to experience (default 0)
"""
如果我們有dict
作爲輸入參數傳遞給函數:
def func3(**kwargs):
""" takes dictionary as input
<Here how to explain them - Is it like?>
kwargs['key1'] -- takes value1
<or simply>
key1 -- takes value1
"""
你能請解釋一下你的意思?你的意思是如何記錄一個應該是字典的參數? – jonrsharpe 2014-11-03 10:46:38
是的,如何記錄一個字典的參數。 – 2014-11-03 12:08:34