## Python KNN
**What is KNN?**
K-nearest neighbors (KNN) is a simple but powerful supervised machine learning algorithm that can be used for both classification and regression tasks. It works by finding the k most similar data points to a new data point and then using the labels of those data...