Skip to content

Instantly share code, notes, and snippets.

@Celia-code
Last active March 11, 2020 07:50
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 Celia-code/7e65dc1117fe9bd4e0350314b3bdf581 to your computer and use it in GitHub Desktop.
Save Celia-code/7e65dc1117fe9bd4e0350314b3bdf581 to your computer and use it in GitHub Desktop.
This is for matplotlib
import matplotlib.pyplot as plt
x = [1, 3, 5, 7, 9]
y = [2, 4, 6, 8, 10]
plt.plot(x, y)
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment