Task 1:__ write a loop to concatenate (vertically) each of the…

Question Task 1:__ write a loop to concatenate (vertically) each of the… Task 1:__ write a loop to concatenate (vertically) each of the monthly files to form one big file.Call this big file as ‘full_data’. Using this data, compute the following statistics for the year2021 and report them as Table 1:import pandas as pdimport numpy as npimport osimport seaborn as sns;sns.set(style=”white”)import matplotlib.pyplot as plt# %matplotlib inlineimport warningswarnings.simplefilter(“ignore”)import globi have written code down as this:full_data = pd.DataFrame()for csv in os.listdir(“C:/Users/kazer lv/Desktop/Week13 BUSS511/*.csv”): if csv.endswith(“.csv”):   print(csv)   data = pd.read_csv(csv)   full_data = pd.concat([full_data, data])full_data.head()  but it comes with  the error: OSError: [WinError 123] The filename, directory name, or volume label syntax is incorrect: ‘C:/Users/Mayan Patel/Desktop/Week13 BUSS511/*.csv’ i have used the absolute  path but it still shows up as an error this is the csv link if needed: https://drive.google.com/drive/folders/1F72mqoshg2EHnd-WROD7hlYrFSMWUbap?usp=sharing but i just need help to understand why this  error is showing  Computer Science Engineering & Technology Python Programming BBUS 511 Share QuestionEmailCopy link Comments (0)