Skip to content

Instantly share code, notes, and snippets.

@manuelinfosec
Created October 22, 2021 23:14
Show Gist options
  • Save manuelinfosec/6324daacef5a2bcb738aad7fdd93a27c to your computer and use it in GitHub Desktop.
Save manuelinfosec/6324daacef5a2bcb738aad7fdd93a27c to your computer and use it in GitHub Desktop.
# import modules
from matplotlib import pyplot as plt
# create coordinates
x = [10,20,30,40,50]
y = [30,30,30,30,30]
# create plots
plt.plot(x, y)
plt.plot(y, x)
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment