I have multiple Excel files which I'm receiving in my blob storage. I have certain columns which I need for sure in each of those excel
for ex;
excel1= ['a','b','c']
excel2=['d','e','f']
I want to fetch only the column names from all these excel and check whether the required columns are present or not and assert if not present. how to achieve this using pyspark?