Convert a Dictionary to a DataFrame (using pandas) in Python

Converting a dictionary to a DataFrame using pandas allows you to analyze and manipulate dictionary data using the powerful data manipulation capabilities provided by pandas. In this blog post, we will explore how to convert a dictionary to a DataFrame using pandas in Python.

Method: Using the DataFrame() constructor

import pandas as pd

my_dict = {"Name": ["Alice", "Bob", "Charlie"],
           "Age": [25, 30, 35],
           "Country": ["USA", "Canada", "UK"]}

df = pd.DataFrame(my_dict)

print(df)

Output:

Name Age Country

0 Alice 25 USA
1 Bob 30 Canada
2 Charlie 35 UK