การเพิ่มตัวแปรให้กับ Python plt.title() เราสามารถทำตามขั้นตอนต่อไปนี้ -
-
สร้างจุดข้อมูลสำหรับ x และ y โดยใช้ numpy และ num (เป็นตัวแปร) เพื่อคำนวณ y และตั้งค่านี้ในชื่อ
-
พล็อตจุดข้อมูล x และ y โดยใช้ plot() วิธีการด้วยสีแดง
-
ตั้งชื่อเส้นโค้งด้วยตัวแปร 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()
ผลลัพธ์