本文简要介绍 python 语言中 numpy.set_string_function
的用法。
用法:
numpy.set_string_function(f, repr=True)
设置漂亮打印数组时要使用的 Python 函数。
- f: 函数或无
用于漂亮打印数组的函数。该函数应该期望一个数组参数并返回数组表示形式的字符串。如果为“无”,则该函数将重置为默认的 NumPy 函数以打印数组。
- repr: 布尔型,可选
如果为 True(默认),则设置漂亮打印的函数(
__repr__
),如果为 False,则设置返回默认字符串表示的函数(__str__
)。
参数:
例子:
>>> def pprint(arr): ... return 'HA! - What are you going to do now?' ... >>> np.set_string_function(pprint) >>> a = np.arange(10) >>> a HA! - What are you going to do now? >>> _ = a >>> # [0 1 2 3 4 5 6 7 8 9]
我们可以将函数重置为默认值:
>>> np.set_string_function(None) >>> a array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
repr影响漂亮的打印或正常的字符串表示。注意
__repr__
仍然受设置影响__str__
因为返回字符串中每个数组元素的宽度变得等于结果的长度__str__()
.>>> x = np.arange(4) >>> np.set_string_function(lambda x:'random', repr=False) >>> x.__str__() 'random' >>> x.__repr__() 'array([0, 1, 2, 3])'
相关用法
- Python numpy set_printoptions用法及代码示例
- Python numpy setdiff1d用法及代码示例
- Python numpy seterr用法及代码示例
- Python numpy seterrobj用法及代码示例
- Python numpy setxor1d用法及代码示例
- Python numpy seterrcall用法及代码示例
- Python numpy searchsorted用法及代码示例
- Python numpy select用法及代码示例
- Python numpy shape用法及代码示例
- Python numpy scimath.log用法及代码示例
- Python numpy signbit用法及代码示例
- Python numpy sort用法及代码示例
- Python numpy scimath.logn用法及代码示例
- Python numpy square用法及代码示例
- Python numpy std用法及代码示例
- Python numpy scimath.log2用法及代码示例
- Python numpy sum用法及代码示例
- Python numpy spacing用法及代码示例
- Python numpy squeeze用法及代码示例
- Python numpy scimath.arccos用法及代码示例
- Python numpy shares_memory用法及代码示例
- Python numpy s_用法及代码示例
- Python numpy swapaxes用法及代码示例
- Python numpy sctype2char用法及代码示例
- Python numpy show_config用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.set_string_function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。