Suppose we have some lists lst1
and lst2
and we want to create a data frame from them. So:
lst1 = ['Apple', 'Orange']
lst2 = []
When I try to create a data frame from these lists, it is empty:
import pandas as pd
df_output = pd.DataFrame(list(zip(lst1, lst2)),
columns = ["lst1", "lst2" ])
Is there any easy way to add the lst2
column even though it is empty?