The function math.ln() will raise an exception when
its argument is negative or 0.
Give the python code for a function MyLn(x) that will return
the math.ln of x if x is positive.
For zero and negative values, an error message must be displayed.
You must use exceptions and distinguish between 0 and negative values.
Answer:
MyLn.py and main test program.