Reputation: 65
I have a question I have a list
list=['nick', 'george', 'kate']
Is it possible to convert it into a dataframe with headers the names of the list ? ('nick' etc.) probably it's easy but I am a beginner so I struggle a little bit thanks!
Upvotes: 0
Views: 408
Reputation: 8826
import pandas as pd
list = ['nick', 'george', 'kate']
df = pd.DataFrame(list, columns =['name'])
print(df)
name
0 nick
1 george
2 kate
Upvotes: 1