how to convert a list into a dataframe in python

32

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)

Comments

Submit
0 Comments