I have multiple lists like following
a = [(1,1),(2,2),(3,3),(3, 4)]
b = [("foo", "bar")]
c = [(4938,1203), (329,213)]
I want to convert this to data frame like following
a b c
(1,1) ("foo","bar") (4938,1203)
(2,2) NA (329,213)
(3,3) NA NA
(3,4) NA NA
pd.DataFrame([a,b,c], index=list('abc')).T?