python中出现警告
MatplotlibDeprecationWarning:
The compare_versions function was deprecated in Matplotlib 3.2 and will be removed two minor releases later.
上述警告的意思是: matplotlib 3.2中已被弃用,将在两个较小的版本之后删除。如果还想用那么就不能升级版本
可以用
import warnings
warnings.filterwarnings(‘ignore’)
忽略显示