Thursday, September 25, 2025
HomeLanguagesPython | Decimal ln() method

Python | Decimal ln() method

Decimal#ln() : ln() is a Decimal class method which returns the natural (base e) logarithm of the Decimal value.

Syntax: Decimal.ln()

Parameter: Decimal values

Return: the natural (base e) logarithm of the Decimal value.

Code #1 : Example for ln() method




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


Output :

Decimal value a :  0.9932
Decimal value b :  0.142857


Decimal a with ln() method :  -0.006823225348125508334064182053
Decimal b with ln() method :  -1.945911149055813305438686327

Code #2 : Example for ln() method




# Python Program explaining 
# ln() 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.ln() method
print ("\n\nDecimal a with ln() method : ", a.ln())
  
print ("Decimal b with ln() method : ", b.ln())


Output :

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


Decimal a with ln() method :  1.144222799920161998805694448
Decimal b with ln() method :  17.28436658810024428478960133
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32319 POSTS0 COMMENTS
Milvus
84 POSTS0 COMMENTS
Nango Kala
6681 POSTS0 COMMENTS
Nicole Veronica
11854 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11910 POSTS0 COMMENTS
Shaida Kate Naidoo
6794 POSTS0 COMMENTS
Ted Musemwa
7070 POSTS0 COMMENTS
Thapelo Manthata
6753 POSTS0 COMMENTS
Umr Jansen
6761 POSTS0 COMMENTS