Python Exercises for Corporate Finance and Risk Management

7 / 26

Question: 47

Q: Compute the IRR of the project with the following cash flows.

enter image description here

INSTRUCTIONS
The internal rate of return (IRR) is a metric used in financial analysis to estimate the profitability of potential investments. IRR is a discount rate that makes the net present value (NPV) of all cash flows equal to zero in a discounted cash flow analysis.
  • import numpy as np, an inbuilt function in python to calculate IRR.
  • The step should look like:

    import numpy as np

  • To find the value of IRR, use the following step:

IRR = np.irr([Cashflows])

See Answer

No hints are availble for this assesment


Note - Having trouble with the assessment engine? Follow the steps listed here

Loading comments...