get sklearn version code example
Example 1: how to know the version of sklearn
conda list scikit
scikit-learn 0.22.1 py37h6288b17_0
Example 2: sklearn version
import nltk
import sklearn
print('The nltk version is {}.'.format(nltk.__version__))
print('The scikit-learn version is {}.'.format(sklearn.__version__))
# The nltk version is 3.0.0.
# The scikit-learn version is 0.15.2.