如何检查 Matplotlib 的 pylab 后端是否内联运行?

要检查 Matplotlib 的 pylab/pyplot 后端是否内联运行,我们可以使用方法返回当前后端的名称。get_backend()method.The

示例

import matplotlib

inline = matplotlib.get_backend()

print("Backend: ", inline)
输出结果
Backend: Qt5Agg