How do I download the csv file? Section 5, unit 10
You have to download the 'Infosys' company's CSV file from www.nseindia.com.
import numpy as np
import pandas as pd
infy = pd.read_csv ('infy_data.csv')
# This code will work only if you have stored the 'infy.csv' in the same folder where this notebook is saved.
# If you store it at some other location, then the line of code would have to specify the location.
# infy = pd.read_csv ('C:/Users/academy/Desktop/infy_data.csv')