# import moduleimportnumpyasnpimportmatplotlib.pyplotasplt# initialize x and y coordinatesx=[0.1,0.2,0.3,0.4,0.5]y=[6.2,-8.4,8.5,9.2,-6.3]# set the title of a plotplt.title("Connected Scatterplot points with lines")# plot scatter plot with x and y dataplt.scatter(x,y)# plot with x and y dataplt.plot(x,y)