Skip to content

Instantly share code, notes, and snippets.

@Celia-code
Created March 11, 2020 08:19
Embed
What would you like to do?
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, "-o-")
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment