numpy.set_string_function¶
-
numpy.
set_string_function
(f, repr=True)[source]¶ 设置当漂亮打印数组时使用的Python函数。
参数: f:function或None
用于漂亮打印数组的函数。函数应该期望单个数组参数,并返回数组的表示形式的字符串。如果为无,则将该函数重置为默认NumPy函数以打印数组。
repr:bool,可选
如果为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? >>> print(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])'