如何在python腳本中獲取模塊功能的幫助,我嘗試了以下內容。如何在python腳本中獲取模塊功能的幫助
import os
# Stored all the function in a variable.
os_module= dir(os)
function_module_dict = {}
# trying to use help in script
for function_name in os_module:
print function_name
function_module_dict[function_name] = help(os.function_name)
print function_module_dict
我得到follwing錯誤,
AttributeError的: '模塊' 對象有沒有屬性 '函數名'
謝謝它解決了我的目的。 – Niraj
@MatthieuMoy提示:在接受另一個答案之後,讓新用戶接受自己的答案是違背禮節的。 – timgeb
Err,在接受另一個答案後我沒有推,當我寫評論時,我的答案是唯一的答案。我只是在回覆評論時說,當有一種方法可以正式用stackoverflow標記時,我的答案是非正式的。 –