Guest User

Untitled

a guest
Aug 17th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. >>> print("Keys of the iris dataset: {}n".format(iris_dataset['feature_names'])
  2. )
  3. Keys of the iris dataset: ['sepal length (cm)', 'sepal width (cm)', 'petal lengt
  4. h (cm)', 'petal width (cm)']
  5.  
  6. print("Keys of the iris dataset:n{}".format(iris_dataset['feature_names']))
  7.  
  8. Keys of the iris dataset:
  9. ['sepal length (cm)', 'sepal width (cm)', 'petal length (cm)', 'petal width (cm)']
Add Comment
Please, Sign In to add comment