The sklearn package was imported as shown below: import sklearn Which code shows correctly re-importing this package?

Questions & AnswersCategory: PythonThe sklearn package was imported as shown below: import sklearn Which code shows correctly re-importing this package?
Geek Boy Staff asked 2 years ago

The sklearn package was imported as shown below:

import sklearn

Which code shows correctly re-importing this package?
a. 

import sklearn

b. 

import importlib
import sklearn

c. 

import importlib
importlib.find(sklearn)

d. 

import importlib
importlib.reload(sklearn)