如何向 Python plt.title 添加变量?
pythonmatplotlibserver side programmingprogramming
要向 Python plt.title() 添加变量,我们可以采取以下步骤 −
使用 numpy 和 num(变量)为 x 和 y 创建数据点,以计算 y 并将其设置在 title 中。
使用 plot() 方法绘制 x 和 y 数据点,颜色为红色。
使用变量 num 设置曲线的标题。
要显示图形,请使用 show() 方法。
示例
import numpy as np from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.00, 3.50] plt.rcParams["figure.autolayout"] = True x = np.linspace(-1, 1, 10) num = 2 y = num ** x plt.plot(x, y, c='red') plt.title(f"y=%d$^x$" % num) plt.show()