pandas to list data frame 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: python how to Create Pandas Dataframe from Multiple Lists
import pandas as pd
months = ['Jan','Apr','Mar','June']
days = [31, 30, 31, 30]
intermediate_dictionary = {'Month':months, 'Day':days}
pandas_dataframe = pd.DataFrame(intermediate_dictionary)
print(pandas_dataframe)
Month Day
0 Jan 31
1 Apr 30
2 Mar 31
3 June 30