Guest User

Untitled

a guest
Nov 21st, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. # Python version
  2. import sys
  3.  
  4. print('Python: {}'.format(sys.version))
  5. # scipy
  6. import scipy
  7.  
  8. print('scipy: {}'.format(scipy.__version__))
  9. # numpy
  10. import numpy
  11.  
  12. print('numpy: {}'.format(numpy.__version__))
  13. # matplotlib
  14. import matplotlib
  15.  
  16. print('matplotlib: {}'.format(matplotlib.__version__))
  17. # pandas
  18. import pandas
  19.  
  20. print('pandas: {}'.format(pandas.__version__))
  21. # scikit-learn
  22. import sklearn
  23.  
  24. print('sklearn: {}'.format(sklearn.__version__))
Add Comment
Please, Sign In to add comment