SciPy is a Python package that is created on top of the NumPy array object. SciPy contains an array of functions, such as integration, linear algebra, and e-processing functionalities. Like NumPy, it can also be installed likewise. NumPy and SciPy are generally used together.
To check the version of SciPy installed on your system, you can run the following code:
import scipy as sp
print ("SciPy version:{}",format(sp.version))