I'm trying to concatenate a .xls file list into .csv:
import glob
import pandas as pd
file_xls = glob.glob(location + "\*.xls")
print(file_xls)
read_file = pd.read_excel(location + file_xls)
but I have an error about the concatenation of the list:
TypeError: can only concatenate str (not "list") to str
Is there a specific way to concatenate this list? Thanks in advance!
Goal: Fuse the the .xls files into .csv with the help of a list