Python| Numpy np.min_scalar_type() 方法
在np.min_scalar_type()
方法的帮助下,我们可以得到在np.min_scalar_type()
方法中作为参数传递的值的最小标量类型。
Syntax : np.min_scalar_type(value)
Return : Return the minimum scalar type of a value.
示例 #1:
在这个例子中我们可以看到,通过使用np.min_scalar_type()
方法,我们可以通过使用这个方法得到一个值的最小标量类型。
# import numpy
import numpy as np
# using np.min_scalar_type() method
gfg = np.min_scalar_type(-50)
print(gfg)
输出 :
int8
示例 #2:
# import numpy
import numpy as np
# using np.min_scalar_type() method
gfg = np.min_scalar_type(55.56)
print(gfg)
输出 :
float16