如何修复 pylab.pause 随附的弃用警告?


要修复在使用已弃用的方法时出现的弃用警告,我们可以在代码中使用 warnings.filterwarnings("ignore")。−

示例

from matplotlib import pyplot as plt, pylab as pl
import warnings

plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True

warnings.filterwarnings("ignore")

pl.pause(0)
plt.show()

输出

Process finished with exit code 0

更新时间: 2021 年 6 月 5 日

177 次浏览

开启你的 职业生涯

通过完成课程获得认证

开始学习
广告