Here is an example to show how to create a pandas dataframe using lists. The list variables will be used as column names in the dataframe.
>>> a=[1,2,3,4]>>> b=[11,12,13,14]>>> c=[21,22,23,24]>>> import pandas as pd>>> df =pd.DataFrame(zip(a,b,c), columns=['a','b','c'])>>> df a b c0 1 11 211 2 12 222 3 13 233 4 14 24