How to plot a Sin Graph in Python In this blog we will learn how to plot a sin graph in python import matplotlib.pyplot as plt # include module for graph plotting impor…
Read moreHow to plot parabola in Python Code for python user friendly import matplotlib.pyplot as plt import numpy as np x = np.linspace(-50,50,100) y = x**2 plt.plot(x,y) plt.…
Read more
Social Plugin