Skip to content

Instantly share code, notes, and snippets.

@megha444
Created October 13, 2020 16:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save megha444/519bd51e5f5e2e47730313138784dfc9 to your computer and use it in GitHub Desktop.
Save megha444/519bd51e5f5e2e47730313138784dfc9 to your computer and use it in GitHub Desktop.
from matplotlib import pyplot as pt
x = [7,12,3]
y = [1,16,6]
pt.plot(x,y)
pt.title('Info')
pt.ylabel('Y axis')
pt.xlabel('X axis')
pt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment