✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що буде результатом цього скрипта?
import matplotlib.pyplot as pltimport numpy as np
xpoints = np.array([0, 6])ypoints = np.array([0, 250])plt.plot(xpoints, ypoints, 'o')plt.show()