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

पायथन में पूर्णांक प्रकारों के लिए मशीन सीमा जानकारी प्राप्त करें

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

कदम

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

import numpy as np

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

int16 प्रकार की जांच -

a = np.iinfo(np.int16)
print("Minimum of int16 type...\n",a.min)
print("Maximum of int16 type...\n",a.max)

int32 प्रकार की जांच -

b = np.iinfo(np.int32)
print("\nMinimum of int32 type...\n",b.min)
print("Maximum of int32 type...\n",b.max)

int64 प्रकार के लिए जाँच -

c = np.iinfo(np.int64)
print("\nMinimum of int64 type...\n",c.min)
print("Maximum of int64 type...\n",c.max)

उदाहरण

import numpy as np

# To get the machine limits information for integer types, use the numpy.iinfo() method in Python Numpy
# The first parameter is the int_type i.e. the kind of integer data type to get information about.

# Checking for int16 type
# The min is the minimum value of given dtype.
# The max is the minimum value of given dtype.
a = np.iinfo(np.int16)
print("Minimum of int16 type...\n",a.min)
print("Maximum of int16 type...\n",a.max)

# Checking for int32 type
b = np.iinfo(np.int32)
print("\nMinimum of int32 type...\n",b.min)
print("Maximum of int32 type...\n",b.max)

# Checking for int64 type
c = np.iinfo(np.int64)
print("\nMinimum of int64 type...\n",c.min)
print("Maximum of int64 type...\n",c.max)

आउटपुट

Minimum of int16 type...
-32768
Maximum of int16 type...
32767

Minimum of int32 type...
-2147483648
Maximum of int32 type...
2147483647

Minimum of int64 type...
-9223372036854775808
Maximum of int64 type...
9223372036854775807
Result... <class 'numpy.complex128'>

  1. पायथन पांडा - डेटाटाइप और डेटाफ़्रेम कॉलम की जानकारी प्राप्त करें

    डेटाटाइप और डेटाफ़्रेम कॉलम की जानकारी प्राप्त करने के लिए, जानकारी () विधि का उपयोग करें। एक उपनाम के साथ आवश्यक पुस्तकालय आयात करें - import pandas as pd; 3 कॉलम के साथ डेटाफ़्रेम बनाएं - dataFrame = pd.DataFrame(    {       "Car": ['BMW', 'Audi'

  1. पायथन में शब्दकोशों के लिए प्राप्त () विधि

    शब्दकोश में तत्वों तक पहुँचने के लिए get () विधि मानक अजगर पुस्तकालय का हिस्सा है। कभी-कभी हमें एक ऐसी कुंजी की तलाश करनी पड़ सकती है जो शब्दकोश में मौजूद न हो। ऐसे मामले में अनुक्रमणिका द्वारा एक्सेस करने की विधि एक त्रुटि फेंकने वाली है और प्रोग्राम को रोक देती है। लेकिन हम get() मेथड का इस्तेमाल

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

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