Consider a list of tuples lst
lst
lst = [(\'a\', 10), (\'b\', 20)]
question What is the quickest way to
The simplest way is pass your list of tuples as a dictionary:
>>> pd.Series(dict(lst)) a 10 b 20 dtype: int64