python-scipyHow do I check the version of Python SciPy I'm using?
To check the version of Python SciPy you are using, you can use the scipy.__version__
attribute. This attribute will return the version of SciPy you are using.
Example code
import scipy
print(scipy.__version__)
Example output:
1.5.2
The code can be broken down into two parts:
import scipy
- this imports the SciPy library into the program.print(scipy.__version__)
- this prints the version of SciPy that is being used.
Helpful links
More of Python Scipy
- How can I use Python and SciPy to find the zeros of a function?
- How do I use Python Numpy to read and write Excel (.xlsx) files?
- How do I create a 2D array of zeros using Python and NumPy?
- How do I create a zero matrix using Python and Numpy?
- How can I use Python and Numpy to parse XML data?
- How can I use RK45 with Python and SciPy?
- How do I use Python XlsxWriter to write a NumPy array to an Excel file?
- How do I use Python and SciPy to write a WAV file?
- How to use Python, XML-RPC, and NumPy together?
- How can I use Python and SciPy to read and write WAV files?
See more codes...