4 lines
143 B
Python
4 lines
143 B
Python
|
from decimal import *
|
||
|
x = Decimal('1.44')
|
||
|
print("Square root of ",x, " is :", x.sqrt())
|
||
|
print("exponential of ",x, " is :", x.exp())
|