LAB 4:Lab Exercises:Data mining is the process of sorting through large amounts of dataand pickingout relevant information. Typically used by everyone from financialanalyststo scienstists, data mining is used to extract information from theenormous data sets.These large data sets and the trend of analyzing them has come to beknown as "Big Data"For this lab, you will be required to do some data mining of theprices ofApple stock from 10/07/2011 to 10/06/2021 (consisting of 2516records). Yourprogram will report facts about the monthly highs, lows, averages,etc for thisdata.A file of Apple's daily stock's prices (file name is: aaplStock.csv)will besupplied for you and must be located in the same directory as yourPython program.This file is comma-delimited and consists of records in thefollowing format:Date,Close/Last,Volume,Open,High,Low10/06/2021,$142,83221120,$139.47,$142.15,$138.37NOTE: The first record in the file, will ALWAYS contain the titlewithheadings and does not count as an actual record!Question #1Write the code for a Python function called getRecord that acceptsthename of the file to read and a date in the form: mm/dd/yyyy.