确定给定对象是否表示 Python 中的标量数据类型
要确定给定对象是否表示标量数据类型,请使用 numpy.issctype() 方法。该方法返回检查 rep 是否为标量数据类型的布尔结果。第一个参数是 rep。如果 rep 是标量数据类型的实例,则返回 True。如果不是,则返回 False。
步骤
首先,导入所需的库,如下所示:
import numpy as np
在 Numpy 中使用 issctype() 方法,如下所示:
print("Result...",np.issctype(np.int32)) print("Result...",np.issctype(np.int64)) print("Result...",np.issctype(np.dtype('str'))) print("Result...",np.issctype(100)) print("Result...",np.issctype(25.9)) print("Result...",np.issctype(np.float32(22.3)))
示例
import numpy as np # To determine whether the given object represents a scalar datatype, use the numpy.issctype() method # The method returns Boolean result of check whether rep is a scalar dtype. # The first parameter is the rep. If rep is an instance of a scalar dtype, True is returned.If not, False is returned. print("Using the issctype() method in Numpy\n") print("Result...",np.issctype(np.int32)) print("Result...",np.issctype(np.int64)) print("Result...",np.issctype(np.dtype('str'))) print("Result...",np.issctype(100)) print("Result...",np.issctype(25.9)) print("Result...",np.issctype(np.float32(22.3)))
输出
Using the issctype() method in Numpy Result... True Result... True Result... True Result... False Result... False Result... False
广告