import pandas as pd
from sklearn.datasets import load_iris

# Load the iris dataset
iris = load_iris()

# Convert the dataset to a Pandas DataFrame
df = pd.DataFrame(data=iris.data, columns=iris.feature_names)

# Print the first few rows of the DataFrame
print(df.head())