numpy.set_string_function #

麻木的。set_string_function ( f , repr = True ) [来源] #

设置漂亮打印数组时要使用的 Python 函数。

参数
f函数或无

用于漂亮打印数组的函数。该函数应该期望一个数组参数并返回数组表示形式的字符串。如果为“无”,则该函数将重置为默认的 NumPy 函数来打印数组。

repr布尔值,可选

如果为 True(默认),则设置用于漂亮打印的函数 ( ),如果为 False,则设置__repr__返回默认字符串表示形式的函数 ( )。__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])'