I am trying to create a Pandas Dataframe and the code I am using is as follows:
df1=pd.DataFrame(columns='Email')
When I run this line, I get the below error:
TypeError: Index(...) must be called with a collection of some kind, 'Email' was passed
Please help