This document summarizes a case study that uses the K-Nearest Neighbors (KNN) machine learning algorithm to classify iris flowers into species using measurements from the well-known Iris dataset. The case study loads the Iris dataset, splits it into training and test sets, trains a KNN model with k=3 neighbors to classify the iris flowers based on their sepal length, sepal width, petal length, and petal width measurements, and evaluates the model's accuracy on the test set. The KNN model achieved an accuracy of 95.5% on this classification task using the Iris dataset.