How to read A column in xlsx file with pandas admin January 25, 2023 New Release Leave a comment 56 Views I understand how to read a column with a certain header, but what if I want to read the entirety of a column like A without a header? excel_data = pd.read_excel('base.xlsx', sheet_name='Sheet1') print(excel_data["A"]) It doesn’t work