Quick solution to a problem I had today. I had a dictionary of {key, values} that I wanted into a dataframe. My solution:
import pandas as pd
pd.DataFrame([[key,value] for key,value in python_dict.iteritems()],columns=["key_col","val_col"])
-->