# You can use matplotlib to create a scatter plot# Import matplotlib.pyplotimport matplotlib.pyplot as plt
# Define x and y coordinatesx = [5,7,8,7,2,17,2,9,4,11,12,9,6]y = [99,86,87,88,111,86,103,87,94,78,77,85,86]# Create the scatter plot and show itplt.scatter(x, y)
plt.show()