फ्लोट प्रकारों के लिए मशीन सीमा जानकारी प्राप्त करने के लिए, PythonNumpy में numpy.finfo() विधि का उपयोग करें। पहला पैरामीटर फ़्लोटिंग प्रकार है यानी जानकारी प्राप्त करने के लिए फ्लोट डेटा प्रकार का प्रकार।
कदम
सबसे पहले, आवश्यक पुस्तकालय आयात करें -
import numpy as np
न्यूनतम दिए गए dtype का न्यूनतम मान है और अधिकतम दिए गए dtype का न्यूनतम मान है।
फ्लोट16 प्रकार की जांच -
a = np.finfo(np.float16) print("Minimum of float16 type...\n",a.min) print("Maximum of float16 type...\n",a.max)
फ्लोट32 प्रकार के लिए जाँच -
b = np.finfo(np.float32) print("\nMinimum of float32 type...\n",b.min) print("Maximum of float32 type...\n",b.max)
फ्लोट64 प्रकार के लिए जाँच -
c = np.finfo(np.float64) print("\nMinimum of float64 type...\n",c.min) print("Maximum of float64 type...\n",c.max)
उदाहरण
import numpy as np # To get the machine limits information for float types, use the numpy.finfo() method in Python Numpy # The first parameter is the floating type i.e. the kind of float data type to get information about. # Checking for float16 type # The min is the minimum value of given dtype. # The max is the minimum value of given dtype. a = np.finfo(np.float16) print("Minimum of float16 type...\n",a.min) print("Maximum of float16 type...\n",a.max) # Checking for float32 type b = np.finfo(np.float32) print("\nMinimum of float32 type...\n",b.min) print("Maximum of float32 type...\n",b.max) # Checking for float64 type c = np.finfo(np.float64) print("\nMinimum of float64 type...\n",c.min) print("Maximum of float64 type...\n",c.max)
आउटपुट
Minimum of float16 type... -65500.0 Maximum of float16 type... 65500.0 Minimum of float32 type... -3.4028235e+38 Maximum of float32 type... 3.4028235e+38 Minimum of float64 type... -1.7976931348623157e+308 Maximum of float64 type... 1.7976931348623157e+308