यह निर्धारित करने के लिए कि दी गई वस्तु एक अदिश डेटा-प्रकार का प्रतिनिधित्व करती है या नहीं, numpy.issctype()विधि का उपयोग करें। विधि जाँच का बूलियन परिणाम लौटाती है कि क्या प्रतिनिधि एक अदिश प्रकार है। पहला पैरामीटर प्रतिनिधि है। यदि प्रतिनिधि एक अदिश प्रकार का एक उदाहरण है, तो सही लौटाया जाता है। यदि नहीं, तो गलत लौटाया जाता है।
कदम
सबसे पहले, आवश्यक पुस्तकालय आयात करें -
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