Sunday, July 26, 2026
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
32520 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6903 POSTS0 COMMENTS
Nicole Veronica
12017 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12115 POSTS0 COMMENTS
Shaida Kate Naidoo
7023 POSTS0 COMMENTS
Ted Musemwa
7265 POSTS0 COMMENTS
Thapelo Manthata
6980 POSTS0 COMMENTS
Umr Jansen
6972 POSTS0 COMMENTS