You are on page 1of 1

Untitled1 http://localhost:8888/nbconvert/html/Untitled1.ipynb?

download=false

from matplotlib import pyplot as plt


from matplotlib import style

style.use('ggplot')
x = [0,3,8,13,16]
y = [8,4,1,4,8]
x2 = [0,0,3,5,8,11,13,16,16]
y2 = [8,12,14,14,11,14,14,12,8]

plt.plot(x,y,'r' ,linewidth=3)
plt.plot(x2,y2,'r' ,linewidth=3)

plt.legend()
plt.title('Saranghae Graph :v')
plt.ylabel('')
plt.xlabel('')

plt.show()

1 of 1 3/2/2021, 12:42 AM

You might also like