This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<br /> | |
<div class="test"> | |
<span>Hello World. This is my first example | |
of SASS/SCSS. <br/></span> | |
<span>For the complete understanding, | |
<br/>please see the .SCSS file!</span> | |
<p> | |
<a> | |
<p>Link example and...</p> | |
<span>Nest inside nest</span> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from sklearn.datasets import load_iris | |
from sklearn.model_selection import train_test_split | |
from sklearn.neighbors import KNeighborsClassifier | |
import numpy as np | |
iris_dataset = load_iris() | |
print("Target names: {}".format(iris_dataset['target_names'])) | |
print("Feature names: {}".format(iris_dataset['feature_names'])) | |
print("Type of data: {}".format(type(iris_dataset['data']))) |