import pandas as pd
data1 = pd.read_excel(U"D:/data/data/000852.SZ.xls")
data2 = pd.read_excel(U"D:/data/data/000526.SZ.xls")
print(data1)
print(data2)
How do I use the Panda function to do a single read on multiple Excel files, instead of repeating the same code and reading each file step by step?