Python 中的 NameError - 副标题未定义

NameError in Python - suptitle not defined

fig = suptitle('image #{}'.format(num), fontsize=20)
NameError: name 'suptitle' is not defined

我已经安装了 numpy、scipy 和 matplotlib 并导入了 pylab,但由于某些原因 Python 无法识别字幕功能。

我认为你需要:

import matplotlib.pyplot as plt

plt.suptitle('image #{}'.format(num), fontsize = 20)