Consider a list of tuples lst
lst
lst = [(\'a\', 10), (\'b\', 20)]
question What is the quickest way to
use pd.Series with a dictionary comprehension
pd.Series
pd.Series({k: v for k, v in lst}) a 10 b 20 dtype: int64