Python查看 Matplotlib版本,numpy版本

Matplotlib版本

import matplotlib
 
matplotlib.__version__

numpy版本

import numpy

print(numpy.__version__)

你可能感兴趣的:(python,numpy,matplotlib)