from list to pandas dataframe code example
Example 1: from list of lists to dataframe
import pandas as pd
data = [['New York Yankees', 'Acevedo Juan', 900000, 'Pitcher'],
['New York Yankees', 'Anderson Jason', 300000, 'Pitcher'],
['New York Yankees', 'Clemens Roger', 10100000, 'Pitcher'],
['New York Yankees', 'Contreras Jose', 5500000, 'Pitcher']]
df = pd.DataFrame.from_records(data)
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
Example 3: convert list to dataframe
L = ['Thanks You', 'Its fine no problem', 'Are you sure']
df = pd.DataFrame({'col':L})
print (df)
col
0 Thanks You
1 Its fine no problem
2 Are you sure