Problems on Data Cleaning and Processing For Machine Learning

6 / 12

Finding versions of the installed libraries

John is working on a Machine Learning project where he has some specific requirements, one of them being that the Numpy and Pandas library installed in the system needs to be of a specific version.

You need to help John find the Numpy and Pandas version installed.

INSTRUCTIONS
  • Write a function check_ver
  • The function should accept a parameter instance
  • The function should check the version of this parameter instance
  • The function should return the version
  • The function should not print the version
  • Makesure to import numpy as np and pandas as pd.
  • Use this function to calculate the version of Numpy installed
  • Use this function to calculate the version of Pandas installed
  • Use the Jupyter notebook given on the right side of the split screen to write your code and execute it
  • Once done, click on the Submit Answer button given above
See Answer

No hints are availble for this assesment


Note - Having trouble with the assessment engine? Follow the steps listed here

Loading comments...