{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "## Lab 01 ## \n", "\n", "The following list corresponds to the cashflows of an investment project:\n", "\n", "\n", "CFList=[-20000, 50000, 40000, 10000, 4000]\n", "\n", "\n", "**1. Calculate the NPV using the following approaches:**\n", "\n", "1.1. Create NPV Function, without using Numpy or another library or modules.\n", "\n", "1.2.\tUse NPV Function\n", "\n", "1.3.\tInstall numpy-financial and use NPV Function\n", "\n", "**2. Create a IRR Function without using any library or modules.**\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "#Create NPV Function, without using Numpy or another library or modules.\n" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Use NPV Function\n" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "#Install numpy-financial and use NPV Function\n" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "# Create a IRR Function without using any library or modules." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.8.5" } }, "nbformat": 4, "nbformat_minor": 4 }