Learn practical skills, build real-world projects, and advance your career
import jovian
import matplotlib.pyplot as plt 
plt.style.use('classic')
import numpy as np
x = np.linspace(0,10,100)
plt.plot(x,x)
[<matplotlib.lines.Line2D at 0x14bb04f5e48>]
Notebook Image
plt.figure(figsize=(5,3))
plt.plot(x,np.sin(x))
plt.plot(x,np.cos(x));
Notebook Image