I apologize in advance if this is a dumb/obvious question, I'm basically brand new to coding.
I just want to take a column of numbers I have in an excel file and append it to a list/dictionary
I've figured out how to print my excel file using the following code:
import pandas as pd
file = r'C:\Users\Me\sampleData.xlsx'
df = pd.read_excel(file, engine='openpyxl')
print(df)
The "sampleData" file is a single column of twenty random integers between 1 and 100.
Is there a way to make a list/dictionary of the values I have in my excel file?