Python Library Function: Difference between revisions
Jump to navigation
Jump to search
(Created page with "A Python Library Function is a Library Function that is a Python Function. * <B>Example(s):</B> ** a NumPy Function. ** a scikit Function. ** a [[NLTK Func...") |
m (Text replacement - "__NOTOC__ " to "__NOTOC__ ") |
||
(9 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
A [[Python Library Function]] is a [[ | A [[Python Library Function]] is a [[Python function]] from a [[Python library]]. | ||
* <B>Context:</B> | |||
** It can be from a [[Python Module]]. | |||
* <B>Example(s):</B> | * <B>Example(s):</B> | ||
** a [[NumPy Function]]. | ** a [[NumPy Function]]. | ||
** a [[ | ** a [[sklearn Function]], such as from the [[sklearn.svm Module]]. | ||
** a [[NLTK Function]]. | ** a [[NLTK Function]]. | ||
** … | |||
* <B>Counter-Example(s):</B> | * <B>Counter-Example(s):</B> | ||
** a [[Python Built-in Function]]. | |||
** a [[Python User-defined Function]]. | |||
** a [[Python Library Data Structure]]. | ** a [[Python Library Data Structure]]. | ||
** a [[Perl Library Function]]. | ** a [[Perl Library Function]]. | ||
* <B>See:</B> [[Python Variable]]. | * <B>See:</B> [[Python Variable]]. | ||
---- | ---- | ||
---- | ---- | ||
__NOTOC__ | |||
[[Category:Concept]] |
Latest revision as of 05:00, 6 January 2023
A Python Library Function is a Python function from a Python library.
- Context:
- It can be from a Python Module.
- Example(s):
- a NumPy Function.
- a sklearn Function, such as from the sklearn.svm Module.
- a NLTK Function.
- …
- Counter-Example(s):
- See: Python Variable.