Thursday, October 9, 2025
HomeLanguagesPython | Decimal scaleb() method

Python | Decimal scaleb() method

Decimal#scaleb() : scaleb() is a Decimal class method which returns the first operand after adding the second value its exp.

Syntax: Decimal.scaleb()

Parameter: Decimal values

Return: the first operand after adding the second value its exp.

Code #1 : Example for scaleb() method




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


Output :

Decimal value a :  1
Decimal value b :  0


Decimal a with scaleb() method :  1
Decimal b with scaleb() method :  0

Code #2 : Example for scaleb() method




# Python Program explaining 
# scaleb() method
  
# loading decimal library
from decimal import *
  
  
# Initializing a decimal value
a = Decimal(3)
  
b = Decimal(2)
  
  
# printing Decimal values
print ("Decimal value a : ", a)
print ("Decimal value b : ", b)
  
  
# Using Decimal.scaleb() method
print ("\n\nDecimal a with scaleb() method : ", a.scaleb(b))
  
print ("Decimal b with scaleb() method : ", b.scaleb(b))


Output :

Decimal value a :  3
Decimal value b :  2


Decimal a with scaleb() method :  3E+2
Decimal b with scaleb() method :  2E+2
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32345 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6714 POSTS0 COMMENTS
Nicole Veronica
11877 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11940 POSTS0 COMMENTS
Shaida Kate Naidoo
6834 POSTS0 COMMENTS
Ted Musemwa
7094 POSTS0 COMMENTS
Thapelo Manthata
6789 POSTS0 COMMENTS
Umr Jansen
6791 POSTS0 COMMENTS