Solve Problems by Coding Solutions - A Complete solution for python programming
import matplotlib.pyplot as plt
import numpy as np
xpoints = np.array([1,8])
ypoints = np.array([3,10])
plt.plot(xpoints,ypoints)
plt.show()
Post a Comment
No comments:
Post a Comment