Imagine you have the same structure of table in a xlsx file and a csv. Can I append it together?
Something like this:
filesList = ['file.xlsx', 'file.csv']
files = []
for file in filesList:
if file.suffix = 'xlsx':
a = pd.read_excel(file)
if file.suffix = 'csv'
a = pd.read_csv(file)
files.append(a)