Question 13
Which of the following will be the correct output of the code snippet given below?
from sklearn.neighbors import KNeighborsClassifierX = [[2,3], [5,6], [10,11], [15,16],[20,21]]y = [0, 0, 1, 1, 2]neigh = KNeighborsClassifier(n_neighbors=3)neigh.fit(X, y)print(neigh.predict([[8,9]]))0
1
2
None