當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python numpy lookfor用法及代碼示例


本文簡要介紹 python 語言中 numpy.lookfor 的用法。

用法:

numpy.lookfor(what, module=None, import_modules=True, regenerate=False, output=None)

對文檔字符串進行關鍵字搜索。

將顯示與搜索匹配的對象列表,並按相關性排序。所有給定的關鍵字都需要在文檔字符串中找到才能作為結果返回,但順序無關緊要。

參數

what str

包含要查找的單詞的字符串。

module str 或列表,可選

要通過其文檔字符串的模塊的名稱。

import_modules 布爾型,可選

是否在包中導入sub-modules。默認為真。

regenerate 布爾型,可選

是否重新生成文檔字符串緩存。默認為假。

output file-like,可選

File-like 將輸出寫入的對象。如果省略,請使用尋呼機。

注意

相關性隻能通過檢查關鍵字是否出現在函數名中、文檔字符串的開頭等來粗略地確定。

例子

>>> np.lookfor('binary representation') 
Search results for 'binary representation'
------------------------------------------
numpy.binary_repr
    Return the binary representation of the input number as a string.
numpy.core.setup_common.long_double_representation
    Given a binary dump as given by GNU od -b, look for long double
numpy.base_repr
    Return a string representation of a number in the given base system.
...

相關用法


注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.lookfor。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。