pip install matplotlibimport matplotlib.pyplot as plt # داده‌ها x = [1, 2, 3, 4] y = [10, 20, 25, 30] # رسم گرافیکی plt.plot(x, y) plt.show()import ...