Thursday, September 4, 2025
HomeLanguagesPython | Decimal same_quantum() method

Python | Decimal same_quantum() method

Decimal#same_quantum() : same_quantum() is a Decimal class method which checks whether the two operands have the same exponent.

Syntax: Decimal.same_quantum()

Parameter: Decimal values

Return: true – if the two operands have the same exponent; otherwise false

Code #1 : Example for same_quantum() method




# Python Program explaining 
# same_quantum() method
  
# loading decimal library
from decimal import *
  
  
# Initializing a decimal value
a = Decimal(-1)
  
b = Decimal('0.142857')
  
# printing Decimal values
print ("Decimal value a : ", a)
print ("Decimal value b : ", b)
  
  
# Using Decimal.same_quantum() method
print ("\n\nDecimal a with same_quantum() method : ", a.same_quantum(b))
  
print ("Decimal b with same_quantum() method : ", b.same_quantum(b))


Output :

Decimal value a :  -1
Decimal value b :  0.142857


Decimal a with same_quantum() method :  False
Decimal b with same_quantum() method :  True

Code #2 : Example for same_quantum() method




# Python Program explaining 
# same_quantum() method
  
# loading decimal library
from decimal import *
  
  
# Initializing a decimal value
a = Decimal('-3.14')
  
b = Decimal('321e + 5')
  
  
# printing Decimal values
print ("Decimal value a : ", a)
print ("Decimal value b : ", b)
  
  
# Using Decimal.same_quantum() method
print ("\n\nDecimal a with same_quantum() method : ", a.same_quantum(b))
  
print ("Decimal b with same_quantum() method : ", b.same_quantum(b))


Output :

Decimal value a :  -3.14
Decimal value b :  3.21E+7


Decimal a with same_quantum() method :  False
Decimal b with same_quantum() method :  True

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32261 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6626 POSTS0 COMMENTS
Nicole Veronica
11795 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11855 POSTS0 COMMENTS
Shaida Kate Naidoo
6747 POSTS0 COMMENTS
Ted Musemwa
7023 POSTS0 COMMENTS
Thapelo Manthata
6695 POSTS0 COMMENTS
Umr Jansen
6714 POSTS0 COMMENTS