My dictionary looks like below. From below dictionary one can see that the key "Column A" contains Multiple values 1,2,3. I would to convert below dictionary to pandas dataframe such that there is duplicate values for Column A. Below is my expected output. I tried using pandas function pd.Dataframe. However, receieved and error that says "ValueError: arrays must all be same length". Please advice how to proceed with dataframe creation.
Thanks in advance for your time!
My Dictionary
my_dict={"Column A":[1,2,3],"ABC":456,"CDE":[12,11]}
Expected Output:
Column A 1
Column A 2
Column A 3
ABC 456
CDE 12
CDE 11