put list in dataframe python code example
Example 1: how to convert a list into a dataframe in python
from pandas import DataFrame
People_List = ['Jon','Mark','Maria','Jill','Jack']
df = DataFrame (People_List,columns=['First_Name'])
print (df)
Example 2: how to add list as new row to pandas dataframe
df = df.append(a_series, ignore_index=True)