I have a list contain nested dictionary, I want to convert them to pandas dataframe.
My input data is below
my_list = [{'ticker': 'CompanyA',
'Cash Cycle': ['3M/2018', '3M/2017', '2017', '2016'],
'A/R Turnover (Times)': ['1', '2', '3', '4']},
{'ticker': 'CompanyB',
'Cash Cycle': ['3M/2018', '3M/2017', '2017', '2016'],
'A/R Turnover (Times)': ['5', '6', '7', '8']}]
I tried to convert with pd.Dataframe(my_list) and result is below
Please tell me how to get result below ?

