fgr1y76

an anonymous user · March 19, 2023
import matplotlib.pyplot as plt
import numpy as np

x = np.linspace(0, 2*np.pi, 100)
y = np.sin(x)
plt.plot(x, y, 'o', color='red')
plt.show()
Output
(Run the program to view its output)

Comments

Please sign up or log in to contribute to the discussion.