read excel file using python panda lib
import pandas as pd
import os
def read_excel_files(directory):
# Initialize an empty list to store data frames
dfs = []
# Loop through all files in the directory
for filename in os.listdir(directory):
if filename.endswith("....
patelnildip.hashnode.dev1 min read