Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> Python

पायथन में उदाहरणों के साथ फ्लोट के लिए मशीन की सीमा की जानकारी प्राप्त करें

फ्लोट प्रकारों के लिए मशीन सीमा जानकारी प्राप्त करने के लिए, PythonNumpy में numpy.finfo() विधि का उपयोग करें। पहला पैरामीटर फ्लोट है यानी फ्लोट डेटा प्रकार के बारे में जानकारी प्राप्त करने के लिए।

कदम

सबसे पहले, आवश्यक पुस्तकालय आयात करें -

import numpy as np

न्यूनतम दिए गए dtype का न्यूनतम मान है और अधिकतम दिए गए dtype का न्यूनतम मान है।

उदाहरणों के साथ फ्लोट16 प्रकार की जाँच -

a = np.finfo(np.float16(12.5))
print("Minimum of float16 type...\n",a.min)
print("Maximum of float16 type...\n",a.max)

उदाहरणों के साथ फ्लोट32 प्रकार की जाँच -

b = np.finfo(np.float32(30.5))
print("\nMinimum of float32 type...\n",b.min)
print("Maximum of float32 type...\n",b.max)

उदाहरणों के साथ फ्लोट प्रकार की जाँच -

c = np.finfo(np.float64(55.9))
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 float i.e. the kind of float data type to get information about.

# Checking for float16 type with instances
# The min is the minimum value of given dtype.
# The max is the minimum value of given dtype.
a = np.finfo(np.float16(12.5))
print("Minimum of float16 type...\n",a.min)
print("Maximum of float16 type...\n",a.max)

# Checking for float32 type with instances
b = np.finfo(np.float32(30.5))
print("\nMinimum of float32 type...\n",b.min)
print("Maximum of float32 type...\n",b.max)

# Checking for float type with instances
c = np.finfo(np.float64(55.9))
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

  1. पायथन में प्रकार की जांच करने का विहित तरीका क्या है?

    यदि आप यह जांचना चाहते हैं कि क्या कोई वस्तु, x बिल्कुल दिए गए प्रकार (उपप्रकार नहीं) का एक उदाहरण है, तो आप इसका प्रकार प्राप्त करने के लिए टाइप का उपयोग कर सकते हैं और कथन का उपयोग करके जांच सकते हैं। उदाहरण x = "Hello" if type(x) is str:    print("x is an instance of str&

  1. पिछले बुधवार के लिए पायथन डेट ऑब्जेक्ट कैसे प्राप्त करें?

    आप कुछ Python date math का उपयोग करके पिछले बुधवार के लिए Python date object प्राप्त कर सकते हैं। आज सप्ताह का जो भी दिन है, उसमें से 2 घटाकर और परिणाम के मापांक को 7 से लेने से हमें पता चल जाएगा कि बुधवार का दिन कैसा था। उदाहरण from datetime import date from datetime import timedelta today = date.

  1. पाइथन में सही-उचित मूल स्ट्रिंग के साथ स्पेस-गद्देदार स्ट्रिंग कैसे प्राप्त करें?

    हम विधि rjust() का उपयोग कर सकते हैं जो स्ट्रिंग को चौड़ाई के बराबर लंबाई की एक स्ट्रिंग में सही ठहराता है जो पैडिंग के बाद कुल स्ट्रिंग लंबाई है। पैडिंग निर्दिष्ट फिलचर का उपयोग करके किया जाता है (डिफ़ॉल्ट एक स्थान है)। यदि चौड़ाई लेन (ओं) से कम है, तो मूल स्ट्रिंग लौटा दी जाती है। उदाहरण के लिए: &