This commit is contained in:
Mert Gör 🇹🇷 2023-06-13 14:41:52 +03:00
parent 2ae3293bfe
commit 307a27b9a2
No known key found for this signature in database
GPG Key ID: 2100A876D55B39B9

View File

@ -0,0 +1,8 @@
points = [(-2, 4), (-1, 1), (0, 0), (1, 1), (2, 4)]
x, y = zip(*points)
import matplotlib.pyplot as plt
plt.plot(x, y)
plt.show()