from sklearn.datasets import load_iris

# Load the iris dataset
iris = load_iris()

# Print the feature names
print("Features:", iris.feature_names)

# Print the target names
print("Targets:", iris.target_names)

# Print the first five rows of the feature matrix
print("Data:")
print(iris.data[:5])