Simple Graph plotting using python || Graph plot in python || Graph Plotting || python programming

come code
Feb 23, 2021

import matplotlib.pyplot as plt
x = [1,2,3]
y =[2,4,5]
plt.plot(x,y)
plt.xlabel(‘x_axis’)
plt.ylabel(‘Y_axis’)
plt.title(‘my Graph’)
plt.show()

--

--

come code

I write blog on programming and computer science.