Top-rated recipes tagged "accounting"http://code.activestate.com/recipes/tags/accounting/top/2009-07-27T05:27:06-07:00ActiveState Code Recipesscript for calculating simple interest (Python) 2008-10-09T07:51:39-07:00Mahmoud Hossamhttp://code.activestate.com/recipes/users/4167486/http://code.activestate.com/recipes/576533-script-for-calculating-simple-interest/ <p style="color: grey"> Python recipe 576533 by <a href="/recipes/users/4167486/">Mahmoud Hossam</a> (<a href="/recipes/tags/accounting/">accounting</a>, <a href="/recipes/tags/interest/">interest</a>). </p> <p>a script which can be used to calculate the amount of interest using the formula I=Pit</p> <p>this is a very simple code,any suggestions are welcome</p> IRR_Versus_NPV 2.6 (Python) 2009-07-27T05:27:06-07:00Fouad Teniouhttp://code.activestate.com/recipes/users/4155345/http://code.activestate.com/recipes/576683-irr_versus_npv-26/ <p style="color: grey"> Python recipe 576683 by <a href="/recipes/users/4155345/">Fouad Teniou</a> (<a href="/recipes/tags/accounting/">accounting</a>, <a href="/recipes/tags/financial_management/">financial_management</a>). Revision 14. </p> <p>The precise rate of IRR( Internal Rate of Return ) is found using my program IRR-Versus-NPV, where I used the linear interpolation . However, companies decide to take or reject a project by comparing the IRR value to the minimum required return. If the IRR is greater than the cost of capital the project should go ahead, otherwise the project should be rejected. The NPV (Net Present Value) could also be computed using my program, where projects are accepted or rejected on the basis of the NPV value, if the NPV is greater than zero the project is accepted , otherwise rejected, a positive NPV demonstrate the project is attractive, thus, it will increase the shareholders’ wealth by this amount. NPV and IRR are both superior Project appraisal techniques, yet the NPV method is a better technique, since it shows an exact amount of increase in shareholders’ wealth, and yet the IRR requires a use of a computer program. My program IRR-Versus-NPV will be of a value to ACCA’s students and also to both undergraduate and postgraduate students of Corporate Finance, Accounting, and Business studies.</p>